Example #1
0
        public IHttpActionResult GetSaldoDetalleAlumnos(int OfertaEducativaId)
        {
            var Result = BLLReportePortal.CargarReporteSaldosOfertaEducativa(OfertaEducativaId);

            if (Result != null)
            {
                return(Ok(Result));
            }
            else
            {
                return(BadRequest("Fallo al traer a los Alumnos."));
            }
        }
Example #2
0
        public IHttpActionResult GetRptSaldos()
        {
            var Result = BLLReportePortal.CargarReporteSaldos();

            if (Result != null)
            {
                return(Ok(Result));
            }
            else
            {
                return(BadRequest("Fallo"));
            }
        }
Example #3
0
 public bool ReporteVoBoEnviarEmail(int AlumnoId, string EmailAlumno)
 {
     return(BLLReportePortal.ReporteVoBoEnviarEmail(AlumnoId, EmailAlumno));
 }
Example #4
0
 public DTOVoBo CargarReporteVoBo(int anio, int periodoid, int usuarioid)
 {
     return(BLLReportePortal.CargarReporteVoBo(anio, periodoid, usuarioid));
 }
Example #5
0
 public List <DTOReporteAlumnoReferencia> CargaReporteAlumnoReferencia(int anio, int periodo)
 {
     return(BLLReportePortal.CargaReporteAlumnoReferencia(anio, periodo));
 }
Example #6
0
 public List <DTOReporteInegi> CargaReporteIneg(int anio, int periodo)
 {
     return(BLLReportePortal.CargaReporteIneg(anio, periodo));
 }
Example #7
0
 public List <DTOReporteBecaSep> CargaReporteBecaSep(int anio, int periodo)
 {
     return(BLLReportePortal.CargaReporteBecaSep(anio, periodo));
 }
Example #8
0
 public List <DTOReporteInscrito> CargaReporteInscrito(int anio, int periodo)
 {
     return(BLLReportePortal.CargaReporteInscrito(anio, periodo));
 }
Example #9
0
 public List <DTOReporteBecasCuatrimestre> CargaReporteBecaCuatrimestre(int anio, int periodo)
 {
     return(BLLReportePortal.CargaReporteBecaCuatrimestre(anio, periodo));
 }
Example #10
0
 public DTOReporteBecas CargarReporteBecas(int anio, int periodo)
 {
     return(BLLReportePortal.CargarReporteBecas(anio, periodo));
 }
Example #11
0
 public List <DTOSaldosDetalle> CargarReporteSaldosDetalle(int alumnoId)
 {
     return(BLLReportePortal.CargarReporteSaldoDetalle(alumnoId));
 }
Example #12
0
 public object CargarReporteSaldos()
 {
     return(BLLReportePortal.CargarReporteSaldos());
 }
Example #13
0
 public DTOCuatrimestre CargarCuatrimestreHistorico()
 {
     return(BLLReportePortal.CargarCuatrimestreHistorico());
 }
Example #14
0
 public List <DTOReporteAlumnoOferta> ObtenerReporteAlumnoOferta()
 {
     return(BLLReportePortal.ObtenerReporteAlumnoOferta());
 }
Example #15
0
 public List <DTOReporteCarteraVencida> CarteraVencida(int Anio, int PeriodoId, string FechaInicial, string FechaFinal)
 {
     return
         (BLLReportePortal.CarteraVencida(Anio, PeriodoId, FechaInicial, FechaFinal));
 }
Example #16
0
 public bool EnviarSolicitudSep(string FechaInicial, string FechaFinal)
 {
     return(BLLReportePortal.EnviarSolicitudSep(FechaInicial, FechaFinal));
 }