public JsonResult GetBrandShopListDatatable() { var list = new List <BrandShop>(); try { list = _brandManager.GetBrandShopListDatatable(); } catch (Exception ex) { } return(Json(new { data = list }, JsonRequestBehavior.AllowGet)); }