/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

  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.Reports
  7. {
  8. [Serializable]
  9. public class RptSancionesAlumnoPeriodo : DTBase
  10. {
  11. public string alumno { get; set; }
  12. public DateTime fecha { get; set; }
  13. public int cantidad { get; set; }
  14. public string tipo { get; set; }
  15. public string motivo { get; set; }
  16. public RptSancionesAlumnoPeriodo()
  17. {
  18. }
  19. }
  20. }