/Docs/07-Implementacion/Source/trunk/EDUAR_actual/EDUAR/EDUAR_DataTransferObject/Reports/RptPromedioCalificacionesPeriodo.cs

http://blpm.googlecode.com/ · C# · 18 lines · 16 code · 2 blank · 0 comment · 0 complexity · d6d53672e8bfafb4a99787676dc6f7ee MD5 · raw file

  1. using System;
  2. using EDUAR_Entities.Shared;
  3. namespace EDUAR_Entities.Reports
  4. {
  5. [Serializable]
  6. public class RptPromedioCalificacionesPeriodo : DTBase
  7. {
  8. public string alumno { get; set; }
  9. public string periodo { get; set; }
  10. public string asignatura { get; set; }
  11. public double promedio { get; set; }
  12. public RptPromedioCalificacionesPeriodo()
  13. {
  14. }
  15. }
  16. }