예제 #1
0
        public JsonResult DataGraficoPromocionesPorComercio(string fechaDesde, string fechaHasta, int idNegocio)
        {
            List <ReportesCampoValor> result = new List <ReportesCampoValor>();

            result = rm.ObtenerPromocionesPorComercio(fechaDesde, fechaHasta, idNegocio);

            return(Json(result, JsonRequestBehavior.AllowGet));
        }