예제 #1
0
        public JsonResult Reporte_PrestamosPagados(string fecha1, string fecha2)
        {
            ReporteRepository DashboardList = new ReporteRepository();

            try
            {
                return(Json(DashboardList.Reporte_PrestamosPagados(fecha1, fecha2), JsonRequestBehavior.AllowGet));
            }
            catch (Exception ex)
            {
                List <Reportes> list = new List <Reportes>();
                Reportes        obj  = new Reportes();
                obj.Accion  = 0;
                obj.Mensaje = ex.Message.ToString();
                list.Add(obj);
                return(Json(list, JsonRequestBehavior.AllowGet));
            }
        }