Esempio n. 1
0
        public JsonResult GetStockistPoolAllocationDetails(FormCollection col)
        {
            DataSet     ds      = new DataSet();
            BL_Customer objCust = new BL_Customer();

            ds = objCust.GetStockistPoolAllocationDetails(_objcurrentInfo.GetCompanyCode(), col["regionCode"].ToString());
            JSONConverter json = new JSONConverter();

            return(Json(json.Serialize(ds), JsonRequestBehavior.AllowGet));
        }