Exemple #1
0
 public System.Threading.Tasks.Task <App1.ServiceReference1.UpdateResponse> UpdateAsync(App1.ServiceReference1.Customer Cus, int id)
 {
     App1.ServiceReference1.UpdateRequest inValue = new App1.ServiceReference1.UpdateRequest();
     inValue.Body     = new App1.ServiceReference1.UpdateRequestBody();
     inValue.Body.Cus = Cus;
     inValue.Body.id  = id;
     return(((App1.ServiceReference1.Service1Soap)(this)).UpdateAsync(inValue));
 }
Exemple #2
0
 public System.Threading.Tasks.Task <App1.ServiceReference1.InsertResponse> InsertAsync(App1.ServiceReference1.Customer Cus)
 {
     App1.ServiceReference1.InsertRequest inValue = new App1.ServiceReference1.InsertRequest();
     inValue.Body     = new App1.ServiceReference1.InsertRequestBody();
     inValue.Body.Cus = Cus;
     return(((App1.ServiceReference1.Service1Soap)(this)).InsertAsync(inValue));
 }
Exemple #3
0
 public SearchResponseBody(App1.ServiceReference1.Customer SearchResult)
 {
     this.SearchResult = SearchResult;
 }
Exemple #4
0
 public UpdateRequestBody(App1.ServiceReference1.Customer Cus, int id)
 {
     this.Cus = Cus;
     this.id  = id;
 }
Exemple #5
0
 public InsertRequestBody(App1.ServiceReference1.Customer Cus)
 {
     this.Cus = Cus;
 }
Exemple #6
0
 public System.Threading.Tasks.Task <bool> UpdateCustomerAsync(App1.ServiceReference1.Customer cus)
 {
     return(base.Channel.UpdateCustomerAsync(cus));
 }