Beispiel #1
0
        public JsonResult GetParticipantsData(string type)
        {
            var UserSession = (CustomerDetail)Session["ChitaleEmployee"];
            List <NoActionParticipantData> objData = new List <NoActionParticipantData>();

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