public IActionResult DeleteFromCategory(int productId, int categoryId)
 {
     _categoryServices.DeleteFromCategory(productId, categoryId);
     return(Redirect("/admin/categories/" + categoryId));
 }