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