Esempio n. 1
0
 public CreateUserRequest(MerchantSite.AuthenticationRef.AuthenticationHeader AuthenticationHeader, int countryId, string userName, string password)
 {
     this.AuthenticationHeader = AuthenticationHeader;
     this.countryId            = countryId;
     this.userName             = userName;
     this.password             = password;
 }
Esempio n. 2
0
 public GenerateSaltRequest(MerchantSite.AuthenticationRef.AuthenticationHeader AuthenticationHeader)
 {
     this.AuthenticationHeader = AuthenticationHeader;
 }
Esempio n. 3
0
 public DecryptPasswordRequest(MerchantSite.AuthenticationRef.AuthenticationHeader AuthenticationHeader, string encryptedPassword, string salt)
 {
     this.AuthenticationHeader = AuthenticationHeader;
     this.encryptedPassword    = encryptedPassword;
     this.salt = salt;
 }
Esempio n. 4
0
 public RetrieveUserRequest(MerchantSite.AuthenticationRef.AuthenticationHeader AuthenticationHeader, int countryId, string userName)
 {
     this.AuthenticationHeader = AuthenticationHeader;
     this.countryId            = countryId;
     this.userName             = userName;
 }