// get all Sale Products public JsonResult GetAllSaleProducts() { BLProduct objProduct = new BLProduct(); List <MVCModels.HiDoctor_Master.ProductModel> lstProd = new List <MVCModels.HiDoctor_Master.ProductModel>(); lstProd = objProduct.GetAllSaleProducts(_objcurrentInfo.GetCompanyCode()); return(Json(lstProd, JsonRequestBehavior.AllowGet)); }