コード例 #1
0
ファイル: HomeController.cs プロジェクト: rnmisrahi/JB
 public ActionResult RenameProduct(int productID, string newName, int code = 0)
 {
     StockServiceClient service = new StockServiceClient();
     service.RenameProduct(code, productID,newName);
     return RedirectToAction("Index");
 }