public HealthChecksController(IOperationService operationService, IHealthChecksService healthChecksService) : base(operationService)
 {
     this.healthChecksService = healthChecksService;
 }
Exemplo n.º 2
0
 public DashboardService(IDashboardStore dashboardStore, ILoggerStore loggerStore, IHealthChecksService healthChecksService)
 {
     this.dashboardStore      = dashboardStore;
     this.loggerStore         = loggerStore;
     this.healthChecksService = healthChecksService;
 }