public HealthCheckService(IHealthCheckFactory healthCheckFactory, IHealthCheckResponseBuilder healthCheckResponseBuilder)
 {
     this._healthCheckFactory         = healthCheckFactory;
     this._healthCheckResponseBuilder = healthCheckResponseBuilder;
 }
 public void Setup()
 {
     _healthCheckResponseBuilder = new HealthCheckResponseBuilder();
 }