Beispiel #1
0
 public CPUController(ICPUService cpuService, IWebHostEnvironment hostEnvironment, ICPUSocketService cpuSocketService, IManufacturerService manufacturerService, IComputerAssemblyService assemblyService, IUserService userService)
 {
     _cpuService          = cpuService;
     _webHostEnvironment  = hostEnvironment;
     _cpuSocketService    = cpuSocketService;
     _manufacturerService = manufacturerService;
     _assemblyService     = assemblyService;
     _userService         = userService;
 }
 public PCCaseController(IPCCaseService pcCaseService, IWebHostEnvironment hostEnvironment, IManufacturerService manufacturerService, IMotherBoardFormFactorService motherBoardFormFactorService, IOuterMemoryFormFactorService outerMemoryFormFactorService, IComputerAssemblyService computerAssemblyService, IUserService userService)
 {
     _pcCaseService                = pcCaseService;
     _webHostEnvironment           = hostEnvironment;
     _manufacturerService          = manufacturerService;
     _motherBoardFormFactorService = motherBoardFormFactorService;
     _outerMemoryFormFactorService = outerMemoryFormFactorService;
     _computerAssemblyService      = computerAssemblyService;
     _userService = userService;
 }
Beispiel #3
0
 public HDDController(IHDDService hddService, IWebHostEnvironment hostEnvironment, IManufacturerService manufacturerService, IOuterMemoryInterfaceService outerMemoryInterfaceService, IOuterMemoryFormFactorService outerMemoryFormFactorService, IComputerAssemblyService assemblyService, IUserService userService)
 {
     _hddService                   = hddService;
     _webHostEnvironment           = hostEnvironment;
     _outerMemoryInterfaceService  = outerMemoryInterfaceService;
     _outerMemoryFormFactorService = outerMemoryFormFactorService;
     _manufacturerService          = manufacturerService;
     _assemblyService              = assemblyService;
     _userService                  = userService;
 }
Beispiel #4
0
 public PowerSupplyController(IPowerSupplyService powerSupplyService, IWebHostEnvironment hostEnvironment, IManufacturerService manufacturerService, IPowerSupplyMotherBoardInterfaceService motherBoardPowerSupplyInterfaceService, IPowerSupplyCPUInterfaceService powerSupplyCPUInterfaceService, IComputerAssemblyService computerAssemblyService, IUserService userService)
 {
     _powerSupplyService  = powerSupplyService;
     _webHostEnvironment  = hostEnvironment;
     _manufacturerService = manufacturerService;
     _motherBoardPowerSupplyInterfaceService = motherBoardPowerSupplyInterfaceService;
     _powerSupplyCPUInterfaceService         = powerSupplyCPUInterfaceService;
     _computerAssemblyService = computerAssemblyService;
     _userService             = userService;
 }
 public SoftwareController(ISoftwareService powerSupplyService, IWebHostEnvironment hostEnvironment, IPublisherService publisherService, IDeveloperService developerService, ICPUService cpuService, IVideoCardService videoCardService, IComputerAssemblyService computerAssemblyService, IUserService userService)
 {
     _softwareService         = powerSupplyService;
     _webHostEnvironment      = hostEnvironment;
     _publisherService        = publisherService;
     _developerService        = developerService;
     _cpuService              = cpuService;
     _videoCardService        = videoCardService;
     _computerAssemblyService = computerAssemblyService;
     _userService             = userService;
 }
 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;
 }
 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;
 }
Beispiel #8
0
 public CPUService(IUnitOfWork uow, IComputerAssemblyService computerAssemblyService)
 {
     Database = uow;
     _computerAssemblyService = computerAssemblyService;
 }
 public EditorController(IComputerAssemblyService computerAssemblyService, IUserService userService, ICommentService commentService)
 {
     _computerAssemblyService = computerAssemblyService;
     _userService             = userService;
     _commentService          = commentService;
 }
 public MotherBoardService(IUnitOfWork uow, IComputerAssemblyService computerAssemblyService)
 {
     Database = uow;
     _computerAssemblyService = computerAssemblyService;
 }
Beispiel #11
0
 public HomeController(ILogger <HomeController> logger, IComputerAssemblyService computerAssemblyService, IUserService userService)
 {
     _logger = logger;
     _computerAssemblyService = computerAssemblyService;
     _userService             = userService;
 }