Пример #1
0
 public ActionResult DeleteProduct(int productID, int code = 0)
 {
     StockServiceClient service = new StockServiceClient();
     service.DeleteProduct(code, productID);
     return RedirectToAction("Index");
 }