Beispiel #1
0
 public System.Threading.Tasks.Task <ClienteServicoCadastrar.WSCadastrar.AlterarResponse> AlterarAsync(int id, string nome, string telefone, string endereco)
 {
     ClienteServicoCadastrar.WSCadastrar.AlterarRequest inValue = new ClienteServicoCadastrar.WSCadastrar.AlterarRequest();
     inValue.Body          = new ClienteServicoCadastrar.WSCadastrar.AlterarRequestBody();
     inValue.Body.id       = id;
     inValue.Body.nome     = nome;
     inValue.Body.telefone = telefone;
     inValue.Body.endereco = endereco;
     return(((ClienteServicoCadastrar.WSCadastrar.CrudServiceSoap)(this)).AlterarAsync(inValue));
 }
Beispiel #2
0
 public string Alterar(int id, string nome, string telefone, string endereco)
 {
     ClienteServicoCadastrar.WSCadastrar.AlterarRequest inValue = new ClienteServicoCadastrar.WSCadastrar.AlterarRequest();
     inValue.Body          = new ClienteServicoCadastrar.WSCadastrar.AlterarRequestBody();
     inValue.Body.id       = id;
     inValue.Body.nome     = nome;
     inValue.Body.telefone = telefone;
     inValue.Body.endereco = endereco;
     ClienteServicoCadastrar.WSCadastrar.AlterarResponse retVal = ((ClienteServicoCadastrar.WSCadastrar.CrudServiceSoap)(this)).Alterar(inValue);
     return(retVal.Body.AlterarResult);
 }
Beispiel #3
0
 System.Threading.Tasks.Task <ClienteServicoCadastrar.WSCadastrar.AlterarResponse> ClienteServicoCadastrar.WSCadastrar.CrudServiceSoap.AlterarAsync(ClienteServicoCadastrar.WSCadastrar.AlterarRequest request)
 {
     return(base.Channel.AlterarAsync(request));
 }
Beispiel #4
0
 ClienteServicoCadastrar.WSCadastrar.AlterarResponse ClienteServicoCadastrar.WSCadastrar.CrudServiceSoap.Alterar(ClienteServicoCadastrar.WSCadastrar.AlterarRequest request)
 {
     return(base.Channel.Alterar(request));
 }