Пример #1
0
        public ActionResult ConfiguracionReportes(ConfiguracionReportes config)
        {
            ManagerUser manage     = new ManagerUser();
            var         dto_result = new List <ConfiguracionReportes>();

            try
            {
                dto_result = manage.ConsultaConfiguracionReportes(config);
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
            return(Json(dto_result));
        }