Exemplo n.º 1
0
 public ActionResult Delete(int[] productIDs = null)
 {
     if (productIDs != null)
     {
         CataLogBLL.DeleteProduct(productIDs);
     }
     return(RedirectToAction("Index"));
 }