public UserRepository(IdentityDbContext identityDbContext) { _identityDbContext = identityDbContext.CheckIfNotEmpty(); }
public OneTimeSecuredOperationRepository(IdentityDbContext identityDbContext) { _identityDbContext = identityDbContext.CheckIfNotEmpty(); }
public TransactionBehaviour(IdentityDbContext dbContext, ILogger <TransactionBehaviour <TRequest, TResponse> > logger) { _dbContext = dbContext.CheckIfNotEmpty(); _logger = logger.CheckIfNotEmpty(); }