예제 #1
0
 public System.Threading.Tasks.Task <AppClient.AppAddUser.AddUserResponse> AddUserAsync(string protocolVersion, string id, string userId, AppClient.AppAddUser.XRoadServiceIdentifierType service, AppClient.AppAddUser.XRoadClientIdentifierType client, AppClient.AppAddUser.AppUser User)
 {
     AppClient.AppAddUser.AddUserRequest inValue = new AppClient.AppAddUser.AddUserRequest();
     inValue.protocolVersion = protocolVersion;
     inValue.id      = id;
     inValue.userId  = userId;
     inValue.service = service;
     inValue.client  = client;
     inValue.User    = User;
     return(((AppClient.AppAddUser.IAppService)(this)).AddUserAsync(inValue));
 }
예제 #2
0
 public bool AddUser(ref string protocolVersion, ref string id, ref string userId, ref AppClient.AppAddUser.XRoadServiceIdentifierType service, ref AppClient.AppAddUser.XRoadClientIdentifierType client, AppClient.AppAddUser.AppUser User)
 {
     AppClient.AppAddUser.AddUserRequest inValue = new AppClient.AppAddUser.AddUserRequest();
     inValue.protocolVersion = protocolVersion;
     inValue.id      = id;
     inValue.userId  = userId;
     inValue.service = service;
     inValue.client  = client;
     inValue.User    = User;
     AppClient.AppAddUser.AddUserResponse retVal = ((AppClient.AppAddUser.IAppService)(this)).AddUser(inValue);
     protocolVersion = retVal.protocolVersion;
     id      = retVal.id;
     userId  = retVal.userId;
     service = retVal.service;
     client  = retVal.client;
     return(retVal.AddUserResult);
 }
예제 #3
0
 System.Threading.Tasks.Task <AppClient.AppAddUser.AddUserResponse> AppClient.AppAddUser.IAppService.AddUserAsync(AppClient.AppAddUser.AddUserRequest request)
 {
     return(base.Channel.AddUserAsync(request));
 }
예제 #4
0
 AppClient.AppAddUser.AddUserResponse AppClient.AppAddUser.IAppService.AddUser(AppClient.AppAddUser.AddUserRequest request)
 {
     return(base.Channel.AddUser(request));
 }