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

http://blpm.googlecode.com/ · C# · 41 lines · 25 code · 6 blank · 10 comment · 0 complexity · 907641e45205ca4ae3797bf47c8a29c0 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 Modulo: DTBase
  10. {
  11. public int idModulo { get; set; }
  12. public DateTime horaInicio { get; set; }
  13. public DateTime horaFinalizacion { get; set; }
  14. public int idDiaHorario { get; set; }
  15. /// <summary>
  16. /// Initializes a new instance of the <see cref="Modulo"/> class.
  17. /// </summary>
  18. public Modulo()
  19. {
  20. }
  21. /// <summary>
  22. /// Releases unmanaged resources and performs other cleanup operations before the
  23. /// <see cref="Modulo"/> is reclaimed by garbage collection.
  24. /// </summary>
  25. ~Modulo()
  26. {
  27. }
  28. /// <summary>
  29. /// Releases unmanaged and - optionally - managed resources
  30. /// </summary>
  31. public virtual void Dispose()
  32. {
  33. }
  34. }
  35. }