Exemplo n.º 1
0
 public ActionResult Update(string id, string name, string value)
 {
     BookCRUD.BookCRUDSoapClient client = new BookCRUD.BookCRUDSoapClient("BookCRUDSoap");
     client.Update_Element(Int32.Parse(id), name, value);
     return(RedirectToAction("Index"));
 }