Beispiel #1
0
        public ActionResult GetAllPartyList(bool IsSupplier)
        {
            List <PartyModel> objListModel = new List <PartyModel>();

            objListModel = objRegistrationManager.GetAllPartyList(IsSupplier);
            var jsonPartyList = Json(objListModel, JsonRequestBehavior.AllowGet);

            jsonPartyList.MaxJsonLength = int.MaxValue;
            return(jsonPartyList);
        }