Пример #1
0
 public MotherBoardController(IMotherBoardService motherBoardService, IWebHostEnvironment hostEnvironment, ICPUSocketService cpuSocketService, IManufacturerService manufacturerService, IMotherBoardNorthBridgeService northBridgeService, IMotherBoardFormFactorService motherBoardFormFactorService, IOuterMemoryInterfaceService outerMemoryInterfaceService, IVideoCardInterfaceService videoCardInterfaceService, IPowerSupplyMotherBoardInterfaceService powerSupplyMotherBoardInterfaceService, IRAMTypeService ramTypeService, IComputerAssemblyService assemblyService, IUserService userService)
 {
     _motherBoardService                     = motherBoardService;
     _webHostEnvironment                     = hostEnvironment;
     _cpuSocketService                       = cpuSocketService;
     _manufacturerService                    = manufacturerService;
     _northBridgeService                     = northBridgeService;
     _motherBoardFormFactorService           = motherBoardFormFactorService;
     _outerMemoryInterfaceService            = outerMemoryInterfaceService;
     _videoCardInterfaceService              = videoCardInterfaceService;
     _powerSupplyMotherBoardInterfaceService = powerSupplyMotherBoardInterfaceService;
     _ramTypeService  = ramTypeService;
     _assemblyService = assemblyService;
     _userService     = userService;
 }
Пример #2
0
 public RAMTypeController(IRAMTypeService ramTypeService)
 {
     _ramTypeService = ramTypeService;
 }