public ExportOrchestrator()

in src/ApiForFhirMigrationTool.Function/ExportOrchestrator.cs [43:53]


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