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 GraphicMemoryTypeController(IGraphicMemoryTypeService graphicMemoryTypeService)
 {
     _graphicMemoryTypeService = graphicMemoryTypeService;
 }