/Docs/07-Implementacion/Source/trunk/EDUAR_Regular/EDUAR/EDUAR_DataTransferObject/Entities/Package Agenda/AgendaActividades.cs

http://blpm.googlecode.com/ · C# · 53 lines · 38 code · 5 blank · 10 comment · 0 complexity · 18c2f609423b8d8a89271c34906fc5b6 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using EDUAR_Entities.Shared;
  6. namespace EDUAR_Entities
  7. {
  8. [Serializable]
  9. public class AgendaActividades : DTBase
  10. {
  11. public int idAgendaActividad { get; set; }
  12. public string descripcion { get; set; }
  13. public bool activo { get; set; }
  14. public string usuario { get; set; }
  15. public DateTime fechaCreacion { get; set; }
  16. public CursoCicloLectivo cursoCicloLectivo { get; set; }
  17. public List<EventoAgenda> listaEventos { get; set; }
  18. public List<Evaluacion> listaEvaluaciones { get; set; }
  19. public List<Excursion> listaExcursiones { get; set; }
  20. public List<Reunion> listaReuniones { get; set; }
  21. /// <summary>
  22. /// Initializes a new instance of the <see cref="AgendaActividades"/> class.
  23. /// </summary>
  24. public AgendaActividades()
  25. {
  26. idAgendaActividad = 0;
  27. activo = true;
  28. cursoCicloLectivo = new CursoCicloLectivo();
  29. listaEventos = new List<EventoAgenda>();
  30. listaEvaluaciones = new List<Evaluacion>();
  31. listaExcursiones = new List<Excursion>();
  32. listaReuniones = new List<Reunion>();
  33. }
  34. /// <summary>
  35. /// Releases unmanaged resources and performs other cleanup operations before the
  36. /// <see cref="AgendaActividades"/> is reclaimed by garbage collection.
  37. /// </summary>
  38. ~AgendaActividades()
  39. {
  40. }
  41. /// <summary>
  42. /// Releases unmanaged and - optionally - managed resources
  43. /// </summary>
  44. public virtual void Dispose()
  45. {
  46. }
  47. }
  48. }