コード例 #1
0
 public TextLookup(IFileHelper fileReader, ILookupStore lookupStore, string client, string documentId)
 {
     _fileReader  = fileReader;
     _lookupStore = lookupStore;
     _client      = client;
     _documentId  = documentId;
 }
コード例 #2
0
        public RabbitMqManager(IConnectionFactory connectionFactory, ILookupStore store)
        {
            _store = store;
            var connection = connectionFactory.CreateConnection();

            _channel             = connection.CreateModel();
            connection.AutoClose = true;
        }
コード例 #3
0
 public FileOrchestratorService(IFileShareQuery fileShareQuery,
                                IFileProcessingService fileProcessingService,
                                ILookupStore lookupStore,
                                IFileDeletionRepository fileDeletionService,
                                ILogger <FileOrchestratorService> logger)
 {
     _fileShareQuery        = fileShareQuery;
     _fileProcessingService = fileProcessingService;
     _lookupStore           = lookupStore;
     _fileDeletionService   = fileDeletionService;
     _logger = logger;
 }
 public ProcessingSucessEventConsumer(IRabbitMqManager manager, ILookupStore store)
 {
     _manager = manager;
     _store   = store;
 }
コード例 #5
0
ファイル: PaperRulez.cs プロジェクト: eduucordova/mapper-test
 public PaperRulez(string client, IFileHelper fileReader, ILookupStore lookupStore)
 {
     _client      = client;
     _fileReader  = fileReader;
     _lookupStore = lookupStore;
 }