Ejemplo n.º 1
0
 public AddUserResponse(string protocolVersion, string id, string userId, AppClient.AppAddUser.XRoadServiceIdentifierType service, AppClient.AppAddUser.XRoadClientIdentifierType client, bool AddUserResult)
 {
     this.protocolVersion = protocolVersion;
     this.id            = id;
     this.userId        = userId;
     this.service       = service;
     this.client        = client;
     this.AddUserResult = AddUserResult;
 }
Ejemplo n.º 2
0
 public AddUserRequest(string protocolVersion, string id, string userId, AppClient.AppAddUser.XRoadServiceIdentifierType service, AppClient.AppAddUser.XRoadClientIdentifierType client, AppClient.AppAddUser.AppUser User)
 {
     this.protocolVersion = protocolVersion;
     this.id      = id;
     this.userId  = userId;
     this.service = service;
     this.client  = client;
     this.User    = User;
 }
Ejemplo n.º 3
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));
 }
Ejemplo n.º 4
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);
 }