public IHttpActionResult ConceptosAlumno(int OfertaEducativaId)
        {
            var Result = BLLPagoConcepto.ListaPagoConceptosAlumno(OfertaEducativaId);

            if (Result.ToString().Contains("System.Collections.Generic.List"))
            {
                return(Ok(Result));
            }
            else
            {
                return(BadRequest("Fallo al momento de consultar, " + Result.GetType().GetProperty("Message").GetValue(Result, null)));
            }
        }
 public IHttpActionResult ConsultarPagoConcepto(int OfertaEducativaId, int PagoConceptoId)
 {
     return(Ok(BLLPagoConcepto.TraerPagoConcepto(OfertaEducativaId, PagoConceptoId)));
 }
 public List <DTOCuota> Conceptos2(string AlumnoId, string OfertaEducativa, string UsuarioId)
 => BLLPagoConcepto.ListaPagoConceptos2(int.Parse(AlumnoId), int.Parse(OfertaEducativa), int.Parse(UsuarioId));
 public DTOPagoConcepto ConsultarPagoConcepto2(string OfertaEducativaId, string PagoConceptoId)
 {
     return(BLLPagoConcepto.TraerPagoConcepto(int.Parse(OfertaEducativaId), int.Parse(PagoConceptoId)));
 }
 public object Conceptos(string AlumnoId, string OfertaEducativa)
 => BLLPagoConcepto.ListaPagoConceptos(int.Parse(OfertaEducativa));