public JsonResult EditBrandShopListById(long id)
        {
            var list = new BrandShop();

            try
            {
                list = _brandManager.EditBrandShopListById(id);
            }
            catch (Exception ex)
            {
                throw ex;
            }

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