示例#1
0
 public void Insert(WebRoleService.RoleDto roleDto)
 {
     WebRoleService.InsertRequest inValue = new WebRoleService.InsertRequest();
     inValue.Body         = new WebRoleService.InsertRequestBody();
     inValue.Body.roleDto = roleDto;
     WebRoleService.InsertResponse retVal = ((WebRoleService.WebRoleServiceSoap)(this)).Insert(inValue);
 }
示例#2
0
 public System.Threading.Tasks.Task <WebRoleService.InsertResponse> InsertAsync(WebRoleService.RoleDto roleDto)
 {
     WebRoleService.InsertRequest inValue = new WebRoleService.InsertRequest();
     inValue.Body         = new WebRoleService.InsertRequestBody();
     inValue.Body.roleDto = roleDto;
     return(((WebRoleService.WebRoleServiceSoap)(this)).InsertAsync(inValue));
 }
示例#3
0
 WebRoleService.InsertResponse WebRoleServiceSoap.Insert(WebRoleService.InsertRequest request)
 {
     return(base.Channel.Insert(request));
 }
示例#4
0
 System.Threading.Tasks.Task <WebRoleService.InsertResponse> WebRoleService.WebRoleServiceSoap.InsertAsync(WebRoleService.InsertRequest request)
 {
     return(base.Channel.InsertAsync(request));
 }