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;
 }
Exemple #3
0
 public EmailRepository()
 {
     _context = new AuthDbContext();
 }
 public NpsRepository()
 {
     _context = new AuthDbContext();
 }
 public AuthProductRepository()
 {
     _context = new AuthDbContext();
 }
 public eSignRepository()
 {
     _context = new AuthDbContext();
 }