예제 #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
 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;
 }