示例#1
0
 public IActionResult DeleteCategory(int categoryId)
 {
     _itemService.ChangeCategoryForAllItemsFromDeletingCategory(categoryId);
     _categoryService.DeleteCategory(categoryId);
     return(RedirectToAction("Index"));
 }