Пример #1
0
 public PV6900VirtualMachine(
     IIteInteropService iteInteropService,
     DeviceInfoBoxService deviceInfoWrapService)
 {
     _iteInteropService = iteInteropService;
     DeviceInfo         = deviceInfoWrapService.Unbox() !;
 }
Пример #2
0
 public DeviceDetectService(
     IIteInteropService iteInteropService,
     PluginLoadService pluginLoadService,
     PluginFactoriessRepository pluginTypesRepository)
 {
     _iteInteropService = iteInteropService;
     _pluginLoadService = pluginLoadService;
 }
Пример #3
0
 public PV6900DevicePanel(
     IIteInteropService iteInteropService,
     DeviceInfoBoxService deviceInfoBoxService,
     ManagedProgramInterpreter interpreter)
 {
     _iteInteropService = iteInteropService;
     _deviceInfo        = deviceInfoBoxService.Unbox() !;
     _interpreter       = interpreter;
 }
Пример #4
0
 public InitDeviceService(
     IIteInteropService iteInteropService,
     DevicesRepository devicesRepository,
     PluginsRepository pluginsRepository)
 {
     _iteInteropService = iteInteropService;
     _devicesRepository = devicesRepository;
     _pluginsRepository = pluginsRepository;
 }
Пример #5
0
 public DeviceMonitorService(
     IIteInteropService iteInteropService,
     DeviceLinkService linkService,
     DeviceLimitsQueryService limitsQueryService,
     DeviceDataMeasureService measureService,
     DeviceSettingDataQueryService settingDataQueryService)
 {
     _iteInteropService       = iteInteropService;
     _linkService             = linkService;
     _limitsQueryService      = limitsQueryService;
     _measureService          = measureService;
     _settingDataQueryService = settingDataQueryService;
 }
Пример #6
0
 public DeviceLinkService(IIteInteropService iteInteropService)
 {
     _iteInteropService = iteInteropService;
 }
Пример #7
0
 public DeviceSettingDataQueryService(IIteInteropService iteInteropService)
 {
     _iteInteropService = iteInteropService;
 }
 public DeviceLimitsQueryService(IIteInteropService iteInteropService)
 {
     _iteInteropService = iteInteropService;
 }
Пример #9
0
 public DeviceDataMeasureService(IIteInteropService iteInteropService)
 {
     _iteInteropService = iteInteropService;
 }