public List <Reporte3> obtenerReporte3(int anio, int trimestre)
        {
            DatabaseEntity        db            = new DatabaseEntity();
            List <List <Object> > listaDeListas = db.spExecuteDataReader("ESECUELE.ReporteTres", new List <SqlParameter> {
                new SqlParameter("@anio", anio),
                new SqlParameter("@trimestre", trimestre),
                new SqlParameter("@fechaActual", Utils.Utilities.getCurrentDate())
            });

            List <Reporte3> reporte = new List <Reporte3>();

            foreach (List <object> row in listaDeListas)
            {
                Reporte3 repo = new Reporte3();
                this.loadReporte3(repo, row);
                reporte.Add(repo);
            }
            return(reporte);
        }