Exemple #1
0
 public ActionResult RenameProduct(int productID, string newName, int code = 0)
 {
     StockServiceClient service = new StockServiceClient();
     service.RenameProduct(code, productID,newName);
     return RedirectToAction("Index");
 }