Beispiel #1
0
 public SpiderCheckService
 (
     ISpiderCheckResultRepository repository,
     IPersonalDataService personalDataService,
     EuroSpiderServiceSettings settings
 )
 {
     _repository               = repository;
     _personalDataService      = personalDataService;
     _settings                 = settings;
     _euroSpiderChannelFactory = CreateChannelFactory();
 }
Beispiel #2
0
 public SpiderFirstCheckService
 (
     ICheckPersonResultDiffService diffService,
     ISpiderDocumentInfoRepository spiderDocumentInfoRepository,
     ICustomerChecksInfoRepository customerChecksRepository,
     ISpiderCheckService spiderCheckService,
     ISpiderCheckProcessingService spiderCheckProcessingService,
     ISpiderCheckResultRepository checkResultRepository,
     ILogFactory logFactory
 )
 {
     _diffService = diffService;
     _spiderDocumentInfoRepository = spiderDocumentInfoRepository;
     _customerChecksRepository     = customerChecksRepository;
     _spiderCheckService           = spiderCheckService;
     _spiderCheckProcessingService = spiderCheckProcessingService;
     _checkResultRepository        = checkResultRepository;
     _log = logFactory.CreateLog(this);
 }
 public SpiderRegularCheckService
 (
     IGlobalCheckInfoService globalCheckInfoService,
     ICheckPersonResultDiffService diffService,
     ISpiderDocumentInfoRepository spiderDocumentInfoRepository,
     ICustomerChecksInfoRepository customerChecksInfoRepository,
     ISpiderCheckService spiderCheckService,
     ISpiderCheckResultRepository spiderCheckResultRepository,
     ISpiderCheckProcessingService spiderCheckProcessingService,
     ILogFactory logFactory
 )
 {
     _globalCheckInfoService       = globalCheckInfoService;
     _diffService                  = diffService;
     _spiderDocumentInfoRepository = spiderDocumentInfoRepository;
     _customerChecksInfoRepository = customerChecksInfoRepository;
     _spiderCheckService           = spiderCheckService;
     _spiderCheckResultRepository  = spiderCheckResultRepository;
     _spiderCheckProcessingService = spiderCheckProcessingService;
     _log = logFactory.CreateLog(this);
 }