예제 #1
0
        public JsonResult DrawCharPie()
        {
            string empid = Session["LoginId"].ToString();
            var    list  = new List <PieChartViewModel>();

            list = _orderProvider.InitPieChart(empid);
            return(Json(list, JsonRequestBehavior.AllowGet));
        }