Ejemplo n.º 1
0
 public System.Threading.Tasks.Task <MyApp.MyService.UpdateDataResponse> UpdateDataAsync(int ID, string Title, string FirstName, string LastName, string Email, string PhoneNo, string Gender)
 {
     MyApp.MyService.UpdateDataRequest inValue = new MyApp.MyService.UpdateDataRequest();
     inValue.Body           = new MyApp.MyService.UpdateDataRequestBody();
     inValue.Body.ID        = ID;
     inValue.Body.Title     = Title;
     inValue.Body.FirstName = FirstName;
     inValue.Body.LastName  = LastName;
     inValue.Body.Email     = Email;
     inValue.Body.PhoneNo   = PhoneNo;
     inValue.Body.Gender    = Gender;
     return(((MyApp.MyService.dbServiceSoap)(this)).UpdateDataAsync(inValue));
 }
Ejemplo n.º 2
0
 System.Threading.Tasks.Task <MyApp.MyService.UpdateDataResponse> MyApp.MyService.dbServiceSoap.UpdateDataAsync(MyApp.MyService.UpdateDataRequest request)
 {
     return(base.Channel.UpdateDataAsync(request));
 }