/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
- using System;
- using EDUAR_Entities.Shared;
-
- namespace EDUAR_Entities.Reports
- {
- [Serializable]
- public class RptPromedioCalificacionesPeriodo : DTBase
- {
- public string alumno { get; set; }
- public string periodo { get; set; }
- public string asignatura { get; set; }
- public double promedio { get; set; }
-
- public RptPromedioCalificacionesPeriodo()
- {
- }
- }
- }