public GetFormRecognizerResultActivity(IFormRecognizerService formRecognizerService,
                                        IBlobStorageRepository blobStorageRepository,
                                        IConfiguration configuration)
 {
     this.formRecognizerService = formRecognizerService;
     this.blobStorageRepository = blobStorageRepository;
     this.configuration         = configuration;
 }
Пример #2
0
 public RecognizerController(IConfiguration configuration,
                             IBlobService blobService,
                             IHubContext <PushHub> hubContext,
                             IFormRecognizerService formRecognizerService)
 {
     _configuration         = configuration;
     _blobService           = blobService;
     _formRecognizerService = formRecognizerService;
     _hubContext            = hubContext;
 }
 public DocumentProcessingService(IDocumentContentExtractor documentContentExtractor,
                                  IFormRecognizerService formRecognizerService,
                                  IDataService <InvoiceData> dataService,
                                  ILogger <DocumentProcessingService> log)
 {
     _documentContentExtractor = documentContentExtractor;
     _formRecognizerService    = formRecognizerService;
     _dataService = dataService;
     _log         = log;
 }