Example #1
0
 public PasswordValidationService(
     IHashingProvider hashingProvider,
     ISaltStrategy saltStrategy,
     IPasswordRule passwordRule)
 {
     _hashProvider = hashingProvider;
     _saltStrategy = saltStrategy;
     _passwordRule = passwordRule;
 }