public CountUpHostedService(
     ILogger <CountUpHostedService> logger,
     CountUpService countUpService)
 {
     _logger         = logger;
     _countUpService = countUpService;
 }
 public CountUpController(ILogger <CountUpController> logger, Services.CountUpService countUpService)
 {
     _logger         = logger;
     _countUpService = countUpService;
 }