/Docs/07-Implementacion/Source/trunk/EDUAR_Regular/EDUAR/EDUAR_DataTransferObject/Reports/RptSancionesAlumnoPeriodo.cs
http://blpm.googlecode.com/ · C# · 24 lines · 20 code · 4 blank · 0 comment · 0 complexity · de9dcc1974163bcaee42b4557cb3bc8b MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using EDUAR_Entities.Shared;
-
- namespace EDUAR_Entities.Reports
- {
- [Serializable]
- public class RptSancionesAlumnoPeriodo : DTBase
- {
-
- public string alumno { get; set; }
- public DateTime fecha { get; set; }
- public int cantidad { get; set; }
- public string tipo { get; set; }
- public string motivo { get; set; }
-
- public RptSancionesAlumnoPeriodo()
- {
- }
-
- }
- }