예제 #1
0
 public ActionResult DeleteConfirmed(int?id)
 {
     if (ModelState.IsValid)
     {
         Handler.DeleteCategory(id);
         return(RedirectToAction("Index", "Category"));
     }
     return(View());
 }