Beispiel #1
0
 public ActionResult Delete(int[] categoryIDs = null)
 {
     if (categoryIDs != null)
     {
         CatalogBLL.DeleteCategory(categoryIDs);
     }
     return(RedirectToAction("Index"));
 }