/// <summary>
 /// Initializes a new instance of the <see cref="HealthcheckController" /> class.
 /// </summary>
 /// <param name="healthcheckRepository">The healthcheck repository.</param>
 /// <param name="healthcheckServic">The healthcheck service.</param>
 public HealthcheckApiController(IHealthcheckRepository healthcheckRepository, IHealthcheckService healthcheckService)
 {
     this.healthcheckRepository = healthcheckRepository;
     this.healthcheckService    = healthcheckService;
 }
Beispiel #2
0
 public HealthcheckController(IHealthcheckService healthCheckService)
 {
     _healthCheckService = healthCheckService;
 }