示例#1
0
        public JsonResult GetParticipantsTilesData()
        {
            var UserSession           = (CustomerDetail)Session["ChitaleEmployee"];
            NoActionModelTile objData = new NoActionModelTile();

            objData = pr.GetNoActionParticipantsTilesData(UserSession.CustomerId, UserSession.CustomerType);
            return(new JsonResult()
            {
                Data = objData, JsonRequestBehavior = JsonRequestBehavior.AllowGet, MaxJsonLength = Int32.MaxValue
            });
        }