Example #1
0
 public OperatingSystemMonitoringController(
     ProcessPerfomanceService processPerfomanceService,
     ProcessInformationService processInformationService
     )
 {
     _processInformationService = processInformationService;
     _processPerfomanceService  = processPerfomanceService;
 }
Example #2
0
 public OperatingSystemInformationController(
     ComputerSystemInformationService computerSystemService,
     ProcessInformationService processInformationService,
     ProcessPerfomanceService processPerfomanceService
     )
 {
     _computerSystemService     = computerSystemService;
     _processInformationService = processInformationService;
     _processPerfomanceService  = processPerfomanceService;
 }