示例#1
0
 public ScraperResultsService(ILogger <ScraperResultsService> logger, IS3Service s3Service,
                              IAwsConfigurationService iawsConfigurationService)
 {
     _logger    = logger;
     _s3Service = s3Service;
     _iawsConfigurationService = iawsConfigurationService;
 }
示例#2
0
 public AggregatorService(
     IScraperResultsService scraperResultsService,
     ITechnologiesService technologiesService,
     ILogger <AggregatorService> logger, IAggregatorResultsService aggregatorResultsService,
     IAwsConfigurationService awsConfigurationService,
     ITechnologiesAggregatorService technologiesAggregatorService)
 {
     _aggregatorResultsService      = aggregatorResultsService;
     _awsConfigurationService       = awsConfigurationService;
     _technologiesAggregatorService = technologiesAggregatorService;
     (_scraperResultsService, _technologiesService, _logger) =
         (scraperResultsService, technologiesService, logger);
 }
示例#3
0
 public AggregatorResultsService(IAwsConfigurationService iawsConfigurationService, IS3Service s3Service, ICloudfrontService cloudfrontService)
 {
     _iawsConfigurationService = iawsConfigurationService;
     _s3Service         = s3Service;
     _cloudfrontService = cloudfrontService;
 }