Exemplo n.º 1
0
 public string GenerateSalt(FintraxPTFImages.AuthenticationRef.AuthenticationHeader AuthenticationHeader)
 {
     FintraxPTFImages.AuthenticationRef.GenerateSaltRequest inValue = new FintraxPTFImages.AuthenticationRef.GenerateSaltRequest();
     inValue.AuthenticationHeader = AuthenticationHeader;
     FintraxPTFImages.AuthenticationRef.GenerateSaltResponse retVal = ((FintraxPTFImages.AuthenticationRef.AuthenticationSoap)(this)).GenerateSalt(inValue);
     return(retVal.GenerateSaltResult);
 }
Exemplo n.º 2
0
 public CreateUserRequest(FintraxPTFImages.AuthenticationRef.AuthenticationHeader AuthenticationHeader, int countryId, string userName, string password)
 {
     this.AuthenticationHeader = AuthenticationHeader;
     this.countryId            = countryId;
     this.userName             = userName;
     this.password             = password;
 }
Exemplo n.º 3
0
 public string DecryptPassword(FintraxPTFImages.AuthenticationRef.AuthenticationHeader AuthenticationHeader, string encryptedPassword, string salt)
 {
     FintraxPTFImages.AuthenticationRef.DecryptPasswordRequest inValue = new FintraxPTFImages.AuthenticationRef.DecryptPasswordRequest();
     inValue.AuthenticationHeader = AuthenticationHeader;
     inValue.encryptedPassword    = encryptedPassword;
     inValue.salt = salt;
     FintraxPTFImages.AuthenticationRef.DecryptPasswordResponse retVal = ((FintraxPTFImages.AuthenticationRef.AuthenticationSoap)(this)).DecryptPassword(inValue);
     return(retVal.DecryptPasswordResult);
 }
Exemplo n.º 4
0
 public int RetrieveUser(FintraxPTFImages.AuthenticationRef.AuthenticationHeader AuthenticationHeader, int countryId, string userName)
 {
     FintraxPTFImages.AuthenticationRef.RetrieveUserRequest inValue = new FintraxPTFImages.AuthenticationRef.RetrieveUserRequest();
     inValue.AuthenticationHeader = AuthenticationHeader;
     inValue.countryId            = countryId;
     inValue.userName             = userName;
     FintraxPTFImages.AuthenticationRef.RetrieveUserResponse retVal = ((FintraxPTFImages.AuthenticationRef.AuthenticationSoap)(this)).RetrieveUser(inValue);
     return(retVal.RetrieveUserResult);
 }
Exemplo n.º 5
0
 public int CreateUser(FintraxPTFImages.AuthenticationRef.AuthenticationHeader AuthenticationHeader, int countryId, string userName, string password)
 {
     FintraxPTFImages.AuthenticationRef.CreateUserRequest inValue = new FintraxPTFImages.AuthenticationRef.CreateUserRequest();
     inValue.AuthenticationHeader = AuthenticationHeader;
     inValue.countryId            = countryId;
     inValue.userName             = userName;
     inValue.password             = password;
     FintraxPTFImages.AuthenticationRef.CreateUserResponse retVal = ((FintraxPTFImages.AuthenticationRef.AuthenticationSoap)(this)).CreateUser(inValue);
     return(retVal.CreateUserResult);
 }
Exemplo n.º 6
0
 public GenerateSaltRequest(FintraxPTFImages.AuthenticationRef.AuthenticationHeader AuthenticationHeader)
 {
     this.AuthenticationHeader = AuthenticationHeader;
 }
Exemplo n.º 7
0
 public DecryptPasswordRequest(FintraxPTFImages.AuthenticationRef.AuthenticationHeader AuthenticationHeader, string encryptedPassword, string salt)
 {
     this.AuthenticationHeader = AuthenticationHeader;
     this.encryptedPassword    = encryptedPassword;
     this.salt = salt;
 }
Exemplo n.º 8
0
 public RetrieveUserRequest(FintraxPTFImages.AuthenticationRef.AuthenticationHeader AuthenticationHeader, int countryId, string userName)
 {
     this.AuthenticationHeader = AuthenticationHeader;
     this.countryId            = countryId;
     this.userName             = userName;
 }