示例#1
0
 public SimulatorEventService(ISimulatorEventRepository simulatorEventRepository,
                              IHardwareInputSelectorRepository hardwareInputSelectorRepository,
                              IMapper mapper)
 {
     _simulatorEventRepository        = simulatorEventRepository;
     _hardwareInputSelectorRepository = hardwareInputSelectorRepository;
     _mapper = mapper;
 }
示例#2
0
 public HardwareInputSelectorService(IHardwareInputSelectorRepository hardwareInputSelectorRepository,
                                     IMapper mapper)
 {
     _hardwareInputSelectorRepository = hardwareInputSelectorRepository;
     _mapper = mapper;
 }