Ejemplo n.º 1
0
 public ActionResult AddNewProduct(string productName, int amount)
 {
     StockServiceClient service = new StockServiceClient();
     service.AddProduct(productName, amount);
     return RedirectToAction("Index");
 }