/Docs/07-Implementacion/Source/trunk/EDUAR_Regular/EDUAR/EDUAR_DataTransferObject/Entities/Package Principales/MotivoAusencia.cs

http://blpm.googlecode.com/ · C# · 71 lines · 54 code · 10 blank · 7 comment · 0 complexity · 360900994cc4f8b5185e0695c96871e0 MD5 · raw file

  1. ///////////////////////////////////////////////////////////
  2. // MotivoAusencia.cs
  3. // Implementation of the Class MotivoAusencia
  4. // Generated by Enterprise Architect
  5. // Created on: 20-jun-2011 16:21:51
  6. // Original author: orkus
  7. ///////////////////////////////////////////////////////////
  8. using EDUAR_Entities.Shared;
  9. using System;
  10. namespace EDUAR_Entities
  11. {
  12. [Serializable]
  13. public class MotivoAusencia: DTBase
  14. {
  15. private string _nombre;
  16. private int _idMotivo;
  17. private int _idMotivoTransaccional;
  18. public MotivoAusencia()
  19. {
  20. }
  21. ~MotivoAusencia()
  22. {
  23. }
  24. public virtual void Dispose()
  25. {
  26. }
  27. public string nombre
  28. {
  29. get
  30. {
  31. return _nombre;
  32. }
  33. set
  34. {
  35. _nombre = value;
  36. }
  37. }
  38. public int idMotivo
  39. {
  40. get
  41. {
  42. return _idMotivo;
  43. }
  44. set
  45. {
  46. _idMotivo = value;
  47. }
  48. }
  49. public int idMotivoTransaccional
  50. {
  51. get
  52. {
  53. return _idMotivoTransaccional;
  54. }
  55. set
  56. {
  57. _idMotivoTransaccional = value;
  58. }
  59. }
  60. }//end MotivoAusencia
  61. }