public ActionResult Xoa(int Id)
        {
            CategoryBusiness categoryBusiness = new CategoryBusiness();

            bool ketQua = categoryBusiness.XoaCategory(Id);

            if (ketQua)
            {
                return(RedirectToAction("Index"));
            }

            return(View());
        }