Beispiel #1
0
 public UserValidator(CustomerSettings customerSettings, IdentityErrorDescriber errors = null)
     : base(errors)
 {
     _customerSettings = customerSettings;
 }
Beispiel #2
0
 public UserValidator(SmartDbContext db, CustomerSettings customerSettings, IdentityErrorDescriber errors = null)
     : base(errors)
 {
     _db = db;
     _customerSettings = customerSettings;
 }
Beispiel #3
0
 public PasswordHasher(IEncryptor encryptor, CustomerSettings customerSettings)
 {
     _encryptor        = encryptor;
     _customerSettings = customerSettings;
 }