public JsonResult EditBrandSubCategorById(long id)
        {
            var list = new List <BrandSubCategoryModel>();

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

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