public async Task <ActionResult> MisPagosAjaxAsync() { var sesion = new SessionUser(); Colecciones col = new Colecciones(); var misPagos = await col.ListaPagos(); return(Json(misPagos.Where(n => n.Alumno.Apoderado.Usuario.Rut == sesion.SesionWeb.Rut), JsonRequestBehavior.AllowGet)); }
public async Task <ActionResult> AllPagosAjaxAsync() { var sesion = new SessionUser(); Colecciones col = new Colecciones(); var misPagos = await col.ListaPagos(); return(Json(misPagos, JsonRequestBehavior.AllowGet)); }
public IEnumerable <Pago> Get() { return(col.ListaPagos()); }