/Docs/07-Implementacion/Source/trunk/EDUAR_actual/EDUAR/EDUAR_DataTransferObject/Entities/Package Agenda/EventoAgenda.cs

http://blpm.googlecode.com/ · C# · 37 lines · 31 code · 2 blank · 4 comment · 0 complexity · ea17bf5b7acead04162e24207876f0af 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. using EDUAR_Utility.Enumeraciones;
  7. namespace EDUAR_Entities
  8. {
  9. [Serializable]
  10. public class EventoAgenda: DTBase
  11. {
  12. public int idAgendaActividad { get; set; }
  13. public int idEventoAgenda { get; set; }
  14. public TipoEventoAgenda tipoEventoAgenda { get; set; }
  15. public Persona usuario { get; set; }
  16. public DateTime fechaEvento { get; set; }
  17. public DateTime fechaAlta { get; set; }
  18. public DateTime fechaModificacion { get; set; }
  19. public string descripcion { get; set; }
  20. public bool activo { get; set; }
  21. //Se utilizan para filtrar
  22. public DateTime fechaEventoDesde { get; set; }
  23. public DateTime fechaEventoHasta { get; set; }
  24. /// <summary>
  25. /// Initializes a new instance of the <see cref="EventoAgenda"/> class.
  26. /// </summary>
  27. public EventoAgenda()
  28. {
  29. idEventoAgenda = 0;
  30. tipoEventoAgenda = new TipoEventoAgenda();
  31. usuario = new Persona();
  32. activo = true;
  33. }
  34. }
  35. }