示例#1
0
 public ActionResult Minus1(int Id)
 {
     InventoryClient client = new InventoryClient();
     client.DbSubtractQuantity(Id, 1);
     return RedirectToAction("Index");
 }