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

http://blpm.googlecode.com/ · C# · 46 lines · 31 code · 8 blank · 7 comment · 0 complexity · 2332a74fb9febe30305175180fcb35f1 MD5 · raw file

  1. ///////////////////////////////////////////////////////////
  2. // EventoInstitucional.cs
  3. // Implementation of the Class EventoInstitucional
  4. // Generated by Enterprise Architect
  5. // Created on: 20-jun-2011 16:21:49
  6. // Original author: Pablo Nicoliello
  7. ///////////////////////////////////////////////////////////
  8. using System;
  9. using EDUAR_Entities.Shared;
  10. namespace EDUAR_Entities
  11. {
  12. [Serializable]
  13. public class EventoInstitucional: DTBase
  14. {
  15. public int idEventoInstitucional { get; set; }
  16. public DateTime fecha { get; set; }
  17. public DateTime? hora { get; set; }
  18. public string detalle { get; set; }
  19. public string lugar { get; set; }
  20. public string titulo { get; set; }
  21. public Persona organizador { get; set; }
  22. public TipoEventoInstitucional tipoEventoInstitucional { get; set; }
  23. public bool activo { get; set; }
  24. public DateTime fechaDesde { get; set; }
  25. public DateTime fechaHasta { get; set; }
  26. public EventoInstitucional()
  27. {
  28. organizador = new Persona();
  29. tipoEventoInstitucional = new TipoEventoInstitucional();
  30. }
  31. ~EventoInstitucional()
  32. {
  33. }
  34. public virtual void Dispose()
  35. {
  36. }
  37. }//end EventoInstitucional
  38. }