public TemperatureMonitorController(IProjectInfoService projectInfoService, IOvenCurrentDataService ovenCurrentDataService, IOvenInfoService ovenInfoService)
 {
     _projectInfoService     = projectInfoService;
     _ovenCurrentDataService = ovenCurrentDataService;
     _ovenInfoService        = ovenInfoService;
 }
 public DataReceiveController(IOvenCurrentDataService ovenCurrentDataService, IOvenHistoryDataService ovenHistoryDataService, IOvenInfoService ovenInfoService)
 {
     _ovenCurrentDataService = ovenCurrentDataService;
     _ovenHistoryDataService = ovenHistoryDataService;
     _ovenInfoService        = ovenInfoService;
 }