public ActionResult DeleteCategoryProduct(Guid Categoryid)
        {
            CategoryProduct categoryproduct = categoryproductService.GetByID(Categoryid);

            categoryproductService.Delete(categoryproduct);
            categoryproductService.SaveChanges();
            return(RedirectToAction("CategoryProduct"));
        }