示例#1
0
 public void Update(WebPersonService.PersonDto personDto)
 {
     WebPersonService.UpdateRequest inValue = new WebPersonService.UpdateRequest();
     inValue.Body           = new WebPersonService.UpdateRequestBody();
     inValue.Body.personDto = personDto;
     WebPersonService.UpdateResponse retVal = ((WebPersonService.WebPersonServiceSoap)(this)).Update(inValue);
 }
示例#2
0
 public System.Threading.Tasks.Task <WebPersonService.UpdateResponse> UpdateAsync(WebPersonService.PersonDto personDto)
 {
     WebPersonService.UpdateRequest inValue = new WebPersonService.UpdateRequest();
     inValue.Body           = new WebPersonService.UpdateRequestBody();
     inValue.Body.personDto = personDto;
     return(((WebPersonService.WebPersonServiceSoap)(this)).UpdateAsync(inValue));
 }
示例#3
0
 WebPersonService.UpdateResponse WebPersonService.WebPersonServiceSoap.Update(WebPersonService.UpdateRequest request)
 {
     return(base.Channel.Update(request));
 }
示例#4
0
 System.Threading.Tasks.Task <WebPersonService.UpdateResponse> WebPersonService.WebPersonServiceSoap.UpdateAsync(WebPersonService.UpdateRequest request)
 {
     return(base.Channel.UpdateAsync(request));
 }