示例#1
0
 public System.Threading.Tasks.Task <MyApp.MyService.SaveDataResponse> SaveDataAsync(int ID, string Title, string FirstName, string LastName, string Email, string PhoneNo, string Gender)
 {
     MyApp.MyService.SaveDataRequest inValue = new MyApp.MyService.SaveDataRequest();
     inValue.Body           = new MyApp.MyService.SaveDataRequestBody();
     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)).SaveDataAsync(inValue));
 }
示例#2
0
 System.Threading.Tasks.Task <MyApp.MyService.SaveDataResponse> MyApp.MyService.dbServiceSoap.SaveDataAsync(MyApp.MyService.SaveDataRequest request)
 {
     return(base.Channel.SaveDataAsync(request));
 }