Esempio n. 1
0
 public ProjectController(IProjectInfoService projectInfoService, IHeatStepService heatStepService, ITmSigService tmSigService, IPidService pidService, IOvenInfoService ovenInfoService)
 {
     _projectInfoService = projectInfoService;
     _heatStepService    = heatStepService;
     _tmSigService       = tmSigService;
     _pidService         = pidService;
     _ovenInfoService    = ovenInfoService;
 }
 public OvenSystemConfigController(IOvenInfoService ovenInfoService)
 {
     _ovenInfoService = ovenInfoService;
 }
 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;
 }