예제 #1
0
 public ActionResult Delete(int Id)
 {
     InventoryClient client = new InventoryClient();
     var item = client.DbGetItem(Id);
     return View(item);
 }
예제 #2
0
 public ActionResult Edit(int id)
 {
     InventoryClient client = new InventoryClient();
     var item = client.DbGetItem(id);
     return View(item);
 }