public PostgresChallengeRepository(PostgresDbContext database) { this.Database = database; }
public PostgresUserRepository(PostgresDbContext db, OAuthTokenHandler tokenHandler, IdGenerator idgen) { this.Database = db; this.TokenHandler = tokenHandler; this.IdGenerator = idgen; }
public PostgresMfaRepository(PostgresDbContext db) { this.Database = db; }