コード例 #1
0
ファイル: EclIngestionWorker.cs プロジェクト: jhonner72/plat
 public EclIngestionWorker(BulkIngestionRepository repository, IIngestionServiceConfiguration configuration, EclIngestionHelper helper, FileHelper fileHelper)
 {
     this.repository = repository;
     this.configuration = configuration;
     this.ingestionHelper = helper;
     this.fileHelper = fileHelper;
 }
コード例 #2
0
 public BatchAuditIngestionWorker(IIngestionRepository repository, IIngestionServiceConfiguration configuration, 
     FileHelper fileHelper, IBatchAuditRecordMapper batchAuditRecordMapper)
 {
     this.repository = repository;
     this.configuration = configuration;
     this.fileHelper = fileHelper;
     this.batchAuditRecordMapper = batchAuditRecordMapper;
 }