コード例 #1
0
        public ActionResult ResumenVentas()
        {
            var model = new VentaSummary();

            return(PartialView(model));
        }
コード例 #2
0
        public ActionResult VentaChart(char period)
        {
            var model = new VentaSummary(period);

            return(PartialView("Chart", model));
        }