public UserRepository(IdentityDbContext identityDbContext)
 {
     _identityDbContext = identityDbContext.CheckIfNotEmpty();
 }
 public OneTimeSecuredOperationRepository(IdentityDbContext identityDbContext)
 {
     _identityDbContext = identityDbContext.CheckIfNotEmpty();
 }
Пример #3
0
 public TransactionBehaviour(IdentityDbContext dbContext,
                             ILogger <TransactionBehaviour <TRequest, TResponse> > logger)
 {
     _dbContext = dbContext.CheckIfNotEmpty();
     _logger    = logger.CheckIfNotEmpty();
 }