示例#1
0
 public CatapultCommunicationService(
     IDevicePoolPopulator devicePoolPopulator,
     IDevicePoolManager devicePoolManager)
 {
     _devicePoolPopulator = devicePoolPopulator;
     _devicePoolManager   = devicePoolManager;
 }
 public SerialPortCommunicationService(
     IDevicePoolPopulator devicePoolPopulator,
     IDevicePoolManager devicePoolManager,
     IEnumerable <ISerialPortConfigurator> serialPortConfigurators)
 {
     _devicePoolPopulator     = devicePoolPopulator;
     _devicePoolManager       = devicePoolManager;
     _serialPortConfigurators = serialPortConfigurators;
 }
 public EthernetCommunicationService(
     IDevicePoolPopulator devicePoolPopulator,
     IDevicePoolManager devicePoolManager,
     IFpgaIpEndpointFinder fpgaIpEndpointFinder)
 {
     _devicePoolPopulator  = devicePoolPopulator;
     _devicePoolManager    = devicePoolManager;
     _fpgaIpEndpointFinder = fpgaIpEndpointFinder;
 }
示例#4
0
 public DevicePoolPopulator(IDevicePoolManager devicePoolManager)
 {
     _devicePoolManager = devicePoolManager;
 }