public IdentityServerDiscoveryTask(
     IOptions <IdentityServerResourceClientCredentials> identityServerResourceClientCredentials,
     IOptions <IdentityServerConfig> options,
     IRemoteIdentityServerDiscoveryStore remoteIdentityServerDiscoveryStore,
     IHealthCheckStore healthCheckStore)
 {
     Optons = options;
     RemoteIdentityServerDiscoveryStore = remoteIdentityServerDiscoveryStore;
     HealthCheckStore = healthCheckStore;
 }
 public RemoteStaticExternalSpaStoreTask(IConfiguration config, IRemoteExternalSPAStore store, IHealthCheckStore healthCheckStore)
 {
     RemoteExternalSPAStore = store;
     HealthCheckStore       = healthCheckStore;
     _config = config;
 }
 public AggregateHealthCheck(IHealthCheckStore store)
 {
     _store = store;
 }
 public DummyHealthScheduledTask(
     IHealthCheckStore healthCheckStore)
 {
     HealthCheckStore = healthCheckStore;
 }