public ImportStatusOrchestrator()

in src/ApiForFhirMigrationTool.Function/ImportStatusOrchestrator.cs [36:46]


        public ImportStatusOrchestrator(IFhirProcessor importProcessor, MigrationOptions options, IAzureTableClientFactory azureTableClientFactory, IMetadataStore azureTableMetadataStore, IOrchestrationHelper orchestrationHelper, TelemetryClient telemetryClient, IFhirClient fhirClient, ILogger<ImportStatusOrchestrator> logger)
        {
            _importProcessor = importProcessor;
            _options = options;
            _azureTableClientFactory = azureTableClientFactory;
            _azureTableMetadataStore = azureTableMetadataStore;
            _orchestrationHelper = orchestrationHelper;
            _telemetryClient = telemetryClient;
            _fhirClient = fhirClient;
            _logger = logger;
        }