コード例 #1
0
 public VideoCardController(IVideoCardService videoCardService, IWebHostEnvironment hostEnvironment, IManufacturerService manufacturerService, IVideoCardInterfaceService videoCardInterfaceService, IGraphicMemoryTypeService graphicMemoryTypeService, IGPUService gpuService, IComputerAssemblyService assemblyService, IUserService userService)
 {
     _videoCardService          = videoCardService;
     _webHostEnvironment        = hostEnvironment;
     _videoCardInterfaceService = videoCardInterfaceService;
     _gpuService = gpuService;
     _graphicMemoryTypeService = graphicMemoryTypeService;
     _manufacturerService      = manufacturerService;
     _assemblyService          = assemblyService;
     _userService = userService;
 }
コード例 #2
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;
 }
コード例 #3
0
 public VideoCardInterfaceController(IVideoCardInterfaceService videoCardInterfaceService)
 {
     _videoCardInterfaceService = videoCardInterfaceService;
 }