public JsonResult AddEdit(Config_ServiceType param)
        {
            var result = Config_ServiceTypeBLL.AddEdit(param);

            return(this.JObjectResult(result, null));
        }
        public JsonResult Delete(int id)
        {
            var result = Config_ServiceTypeBLL.Delete(id);

            return(this.JObjectResult(result, null));
        }
        public ActionResult SearchInfo(PageParam bannerParams)
        {
            PageList <Config_ServiceTypeSearch> bannerList = Config_ServiceTypeBLL.SearchInfo(bannerParams);

            return(Json(bannerList, JsonRequestBehavior.AllowGet));
        }