コード例 #1
0
 public Bootstrapper(
     ILogger <Bootstrapper> logger,
     ResolveService resolve,
     DnsReadOnlyDbContext dnsReadOnly,
     RedisService redisService)
 {
     _logger      = logger;
     _resolve     = resolve;
     _dnsReadOnly = dnsReadOnly;
     _redis       = redisService;
 }
コード例 #2
0
ファイル: AttackService.cs プロジェクト: dmitriyq/dnsanalyzer
 public AttackService(
     ILogger <AttackService> logger,
     DnsDbContext dbContext,
     DnsReadOnlyDbContext readOnlyDbContext,
     RedisService redis)
 {
     _logger            = logger;
     _dbContext         = dbContext;
     _readOnlyDbContext = readOnlyDbContext;
     _redis             = redis;
 }
コード例 #3
0
ファイル: NotifyService.cs プロジェクト: dmitriyq/dnsanalyzer
 public NotifyService(ILogger <NotifyService> logger, DnsReadOnlyDbContext dbContext)
 {
     _logger    = logger;
     _dbContext = dbContext;
 }
コード例 #4
0
 public IpInfoService(ILogger <IpInfoService> logger, DnsDbContext dbContext, DnsReadOnlyDbContext readOnlyDbContext)
 {
     _logger            = logger;
     _dbContext         = dbContext;
     _readOnlyDbContext = readOnlyDbContext;
 }