Exemple #1
0
 public InitializerHub(
     IFhirService fhirService,
     ILocalhost localhost,
     IFhirStoreAdministration fhirStoreAdministration,
     IFhirIndex fhirIndex,
     IIndexRebuildService indexRebuildService)
 {
     this.localhost               = localhost;
     this.fhirService             = fhirService;
     this.fhirStoreAdministration = fhirStoreAdministration;
     this.fhirIndex               = fhirIndex;
     this.indexRebuildService     = indexRebuildService;
     this.resources               = null;
 }
Exemple #2
0
 public MaintenanceHub(
     IAsyncFhirService fhirService,
     IFhirStoreAdministration fhirStoreAdministration,
     IFhirIndex fhirIndex,
     ExamplesSettings examplesSettings,
     IIndexRebuildService indexRebuildService,
     ILogger <MaintenanceHub> logger,
     IHubContext <MaintenanceHub> hubContext)
 {
     _fhirService             = fhirService;
     _fhirStoreAdministration = fhirStoreAdministration;
     _fhirIndex           = fhirIndex;
     _examplesSettings    = examplesSettings;
     _indexRebuildService = indexRebuildService;
     _logger     = logger;
     _hubContext = hubContext;
 }