public AuthRepository() { _context = new AuthDbContext(); _userManager = new UserManager <Account, Guid>(new AccountStore <Account>(_context)); _userManager.UserValidator = new AccountValidator <Account>(); _userManager.PasswordHasher = new SaaSPasswordHasher(); }
internal AccountStore(AuthDbContext context) { _context = context; }
public EmailRepository() { _context = new AuthDbContext(); }
public NpsRepository() { _context = new AuthDbContext(); }
public AuthProductRepository() { _context = new AuthDbContext(); }
public eSignRepository() { _context = new AuthDbContext(); }