コード例 #1
0
 public BasePluginViewModel(IProducerDeviceRequestService deviceRequestService, IConsumerMessageQueueService messageQueueService, ITestService testService, IPluginPrinterService printerService, IEzspService ezspService, IErrorProducerService errorProducerService)
 {
     this.deviceRequestService = deviceRequestService;
     this.messageQueueService  = messageQueueService;
     this.testService          = testService;
     this.printerService       = printerService;
     this.ezspService          = ezspService;
     this.errorProducerService = errorProducerService;
 }
コード例 #2
0
 public UserSessionService(IDataContextFactory dataContextFactory, IErrorProducerService errorProducerService)
 {
     this.dataContextFactory   = dataContextFactory;
     this.errorProducerService = errorProducerService;
 }
コード例 #3
0
ファイル: EzspService.cs プロジェクト: vicmatmar/HubTester
 public EzspService(IErrorProducerService errorProducerService)
 {
     this.errorProducerService = errorProducerService;
 }
コード例 #4
0
 public DeviceValidationService(IEzspService ezspService, IDataContextFactory dataContextFactory, IErrorProducerService errorProducerService)
 {
     this.ezspService          = ezspService;
     this.dataContextFactory   = dataContextFactory;
     this.errorProducerService = errorProducerService;
 }