Exemplo n.º 1
0
 public ProcessorService(IGenericDatabaseRepository <CPU> cpuRepo, IGenericComponentRepository componentRepo)
 {
     _cpuRepo       = cpuRepo;
     _componentRepo = componentRepo;
 }
Exemplo n.º 2
0
 public MainboardService(IGenericDatabaseRepository <Mainboard> mainboardRepo, IGenericComponentRepository componentRepo)
 {
     _mainboardRepo = mainboardRepo;
     _componentRepo = componentRepo;
 }
Exemplo n.º 3
0
 public DDRService(IGenericDatabaseRepository <DDR> ddrRepo, IGenericComponentRepository componentRepo)
 {
     _ddrRepo       = ddrRepo;
     _componentRepo = componentRepo;
 }
Exemplo n.º 4
0
 public StorageService(IGenericDatabaseRepository <Storage> storageRepo, IGenericComponentRepository componentRepo)
 {
     _storageRepo   = storageRepo;
     _componentRepo = componentRepo;
 }
Exemplo n.º 5
0
 public BatteryService(IGenericDatabaseRepository <Battery> batteryRepo, IGenericComponentRepository componentRepository)
 {
     _batteryRepo         = batteryRepo;
     _componentRepository = componentRepository;
 }
Exemplo n.º 6
0
 public ComputerService(IGenericDatabaseRepository <Computer> computerRepo, IGenericComponentRepository componentRepo)
 {
     _computerRepo  = computerRepo;
     _componentRepo = componentRepo;
 }
Exemplo n.º 7
0
 public GPUService(IGenericDatabaseRepository <GPU> gpuRepo, IGenericComponentRepository componentRepo)
 {
     _gpuRepo       = gpuRepo;
     _componentRepo = componentRepo;
 }
Exemplo n.º 8
0
 public NetworkInterfaceService(IGenericDatabaseRepository <Databases.RetrieverCore.Common.Models.NetworkInterface> interfaceRepo, IExtendedNetworkInterfaceComponentRepository componentRepo)
 {
     _interfaceRepo = interfaceRepo;
     _componentRepo = componentRepo;
 }