public AuthenticationService(IHealthCheckConfiguration hcConfig) { _hcConfig = hcConfig; }
protected Handler(IHealthCheckConfiguration hcConfig) => _hcConfig = hcConfig;
public AuthenticationServiceTests() { _hcConfig = new HealthChecksBuilder() .UseAuthorization("AnyApiKey") .HealthCheckConfig; }
public HealthCheckHandler(IHealthCheckConfiguration healthCheckConfiguration, IHealthCheckService healthCheckService) : base(healthCheckConfiguration) { _hcService = healthCheckService; _hcConfig = healthCheckConfiguration; }
public AuthenticationHandler(IHealthCheckConfiguration healthCheckConfiguration, IAuthenticationService service) : base(healthCheckConfiguration) { _hcConfig = healthCheckConfiguration; _authService = service; }