/Docs/07-Implementacion/Source/trunk/EDUAR_actual/EDUAR/EDUAR_DataTransferObject/Entities/Package Principales/Periodo.cs

http://blpm.googlecode.com/ · C# · 40 lines · 24 code · 9 blank · 7 comment · 0 complexity · 86494f8eae2ac1ddb10139a95540748e MD5 · raw file

  1. ///////////////////////////////////////////////////////////
  2. // Periodo.cs
  3. // Implementation of the Class Periodo
  4. // Generated by Enterprise Architect
  5. // Created on: 23-jun-2011 19:30:00
  6. // Original author: Laura Pastorino
  7. ///////////////////////////////////////////////////////////
  8. using System;
  9. using EDUAR_Entities.Shared;
  10. namespace EDUAR_Entities
  11. {
  12. [Serializable]
  13. public class Periodo: DTBase
  14. {
  15. public int idPeriodo { get; set; }
  16. public int idPeriodoTransaccional { get; set; }
  17. public CicloLectivo cicloLectivo { get; set; }
  18. public DateTime fechaFin { get; set; }
  19. public DateTime fechaInicio { get; set; }
  20. public string nombre { get; set; }
  21. public Periodo()
  22. {
  23. }
  24. ~Periodo()
  25. {
  26. }
  27. public virtual void Dispose()
  28. {
  29. }
  30. }//end Periodo
  31. }