예제 #1
0
 public void Insert(WebPersonService.PersonDto personDto)
 {
     WebPersonService.InsertRequest inValue = new WebPersonService.InsertRequest();
     inValue.Body           = new WebPersonService.InsertRequestBody();
     inValue.Body.personDto = personDto;
     WebPersonService.InsertResponse retVal = ((WebPersonService.WebPersonServiceSoap)(this)).Insert(inValue);
 }
예제 #2
0
 public System.Threading.Tasks.Task <WebPersonService.InsertResponse> InsertAsync(WebPersonService.PersonDto personDto)
 {
     WebPersonService.InsertRequest inValue = new WebPersonService.InsertRequest();
     inValue.Body           = new WebPersonService.InsertRequestBody();
     inValue.Body.personDto = personDto;
     return(((WebPersonService.WebPersonServiceSoap)(this)).InsertAsync(inValue));
 }
예제 #3
0
 WebPersonService.InsertResponse WebPersonService.WebPersonServiceSoap.Insert(WebPersonService.InsertRequest request)
 {
     return(base.Channel.Insert(request));
 }
예제 #4
0
 System.Threading.Tasks.Task <WebPersonService.InsertResponse> WebPersonService.WebPersonServiceSoap.InsertAsync(WebPersonService.InsertRequest request)
 {
     return(base.Channel.InsertAsync(request));
 }