public VideoCardsService(IUnitOfWorkHardwareAPI unitOfWorkHardwareAPI, IMapper mapper)
 {
     _unitOfWorkHardwareAPI = unitOfWorkHardwareAPI;
     _mapper = mapper;
 }
Beispiel #2
0
 public ProcessorsService(IUnitOfWorkHardwareAPI unitOfWorkHardwareAPI, IMapper mapper)
 {
     _unitOfWorkHardwareAPI = unitOfWorkHardwareAPI;
     _mapper = mapper;
 }
 public HardDriveDisksService(IUnitOfWorkHardwareAPI unitOfWorkHardwareAPI, IMapper mapper)
 {
     _unitOfWorkHardwareAPI = unitOfWorkHardwareAPI;
     _mapper = mapper;
 }
 public SolidStateDrivesService(IUnitOfWorkHardwareAPI unitOfWorkHardwareAPI, IMapper mapper)
 {
     _unitOfWorkHardwareAPI = unitOfWorkHardwareAPI;
     _mapper = mapper;
 }
 public MotherboardsService(IMapper mapper,
                            IUnitOfWorkHardwareAPI uow)
 {
     _mapper = mapper;
     _unitOfWorkHardwareAPI = uow;
 }
Beispiel #6
0
 public RandomAccessMemoryService(IUnitOfWorkHardwareAPI unitOfWorkHardwareAPI, IMapper mapper)
 {
     _unitOfWorkHardwareAPI = unitOfWorkHardwareAPI;
     _mapper = mapper;
 }
Beispiel #7
0
 public PowerSuppliesService(IMapper mapper,
                             IUnitOfWorkHardwareAPI uow)
 {
     _mapper = mapper;
     _unitOfWorkHardwareAPI = uow;
 }