/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
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using EDUAR_Entities.Shared;
-
- namespace EDUAR_Entities
- {
- [Serializable]
- public class Modulo: DTBase
- {
- public int idModulo { get; set; }
- public DateTime horaInicio { get; set; }
- public DateTime horaFinalizacion { get; set; }
- public int idDiaHorario { get; set; }
-
- /// <summary>
- /// Initializes a new instance of the <see cref="Modulo"/> class.
- /// </summary>
- public Modulo()
- {
- }
-
- /// <summary>
- /// Releases unmanaged resources and performs other cleanup operations before the
- /// <see cref="Modulo"/> is reclaimed by garbage collection.
- /// </summary>
- ~Modulo()
- {
-
- }
-
- /// <summary>
- /// Releases unmanaged and - optionally - managed resources
- /// </summary>
- public virtual void Dispose()
- {
-
- }
- }
- }