コード例 #1
0
 public ActionResult Delete(string[] customerIDs = null)
 {
     if (customerIDs != null)
     {
         CatalogBLL.DeleteCustomer(customerIDs);
     }
     return(RedirectToAction("Index"));
 }