Exemplo n.º 1
0
 public bool UpdateUser(ref eSAR.UserServiceRef.User user, ref string message)
 {
     eSAR.UserServiceRef.UpdateUserRequest inValue = new eSAR.UserServiceRef.UpdateUserRequest();
     inValue.user    = user;
     inValue.message = message;
     eSAR.UserServiceRef.UpdateUserResponse retVal = ((eSAR.UserServiceRef.IUserService)(this)).UpdateUser(inValue);
     user    = retVal.user;
     message = retVal.message;
     return(retVal.UpdateUserResult);
 }
Exemplo n.º 2
0
 public UpdateUserRequest(eSAR.UserServiceRef.User user, string message)
 {
     this.user    = user;
     this.message = message;
 }
Exemplo n.º 3
0
 public UpdateUserResponse(bool UpdateUserResult, eSAR.UserServiceRef.User user, string message)
 {
     this.UpdateUserResult = UpdateUserResult;
     this.user             = user;
     this.message          = message;
 }
Exemplo n.º 4
0
 public CreateUserResponse(bool CreateUserResult, eSAR.UserServiceRef.User user, string message)
 {
     this.CreateUserResult = CreateUserResult;
     this.user             = user;
     this.message          = message;
 }