/Docs/07-Implementacion/Source/trunk/EDUAR_Regular/EDUAR/EDUAR_DataTransferObject/Entities/Package Planificacion Clases/Plan.cs

http://blpm.googlecode.com/ · C# · 129 lines · 105 code · 17 blank · 7 comment · 0 complexity · d7aac760f0349303e65d6269d48af06c MD5 · raw file

  1. ///////////////////////////////////////////////////////////
  2. // Plan.cs
  3. // Implementation of the Class Plan
  4. // Generated by Enterprise Architect
  5. // Created on: 20-jun-2011 16:21:53
  6. // Original author: Pablo Nicoliello
  7. ///////////////////////////////////////////////////////////
  8. using System;
  9. using System.Collections.Generic;
  10. using EDUAR_Entities.Shared;
  11. namespace EDUAR_Entities
  12. {
  13. [Serializable]
  14. public class Plan:DTBase
  15. {
  16. public int idPlan { get; set; }
  17. private List<Asignatura> _asignaturas;
  18. private List<Contenido> _contenidos;
  19. private Usuario _creador;
  20. private DateTime _fechaCreacion;
  21. private string _nombrePlan;
  22. private int _periodoFinVigencia;
  23. private int _periodoInicioVigencia;
  24. public Orientacion m_Orientacion;
  25. public Plan()
  26. {
  27. }
  28. ~Plan()
  29. {
  30. }
  31. public virtual void Dispose()
  32. {
  33. }
  34. public List<Asignatura> asignaturas
  35. {
  36. get
  37. {
  38. return _asignaturas;
  39. }
  40. set
  41. {
  42. _asignaturas = value;
  43. }
  44. }
  45. public List<Contenido> contenidos
  46. {
  47. get
  48. {
  49. return _contenidos;
  50. }
  51. set
  52. {
  53. _contenidos = value;
  54. }
  55. }
  56. public Usuario creador
  57. {
  58. get
  59. {
  60. return _creador;
  61. }
  62. set
  63. {
  64. _creador = value;
  65. }
  66. }
  67. public DateTime fechaCreacion
  68. {
  69. get
  70. {
  71. return _fechaCreacion;
  72. }
  73. set
  74. {
  75. _fechaCreacion = value;
  76. }
  77. }
  78. public string nombrePlan
  79. {
  80. get
  81. {
  82. return _nombrePlan;
  83. }
  84. set
  85. {
  86. _nombrePlan = value;
  87. }
  88. }
  89. public int periodoFinVigencia
  90. {
  91. get
  92. {
  93. return _periodoFinVigencia;
  94. }
  95. set
  96. {
  97. _periodoFinVigencia = value;
  98. }
  99. }
  100. public int periodoInicioVigencia
  101. {
  102. get
  103. {
  104. return _periodoInicioVigencia;
  105. }
  106. set
  107. {
  108. _periodoInicioVigencia = value;
  109. }
  110. }
  111. }//end Plan
  112. }