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