public ThermalNotifierController(ILogger <ThermalNotifierController> logger, IThermalNotifierService thermalNotifierService)
 {
     _logger = logger;
     _thermalNotifierService = thermalNotifierService;
 }
 public BishopService(IThermalNotifierService thermalNotifierService, ILogger logger)
 {
     _thermalNotifierService = thermalNotifierService;
     _logger = logger;
 }