public DatabaseInitializer(WordkiDbContext dbContext,
                            ITimeProvider timeProvider,
                            IEncrypter encrypter,
                            IOptions <General> options,
                            ILogger <IDatabaseInitializer> logger)
 {
     this.dbContext    = dbContext;
     this.timeProvider = timeProvider;
     this.encrypter    = encrypter;
     this.logger       = logger;
     this.options      = options.Value;
 }
 public EfUserRepository(WordkiDbContext dbContext)
 {
     this.dbContext = dbContext;
 }