public Motherboard(Cpu cpu, VideoCard videoCard, IRam ram) { cpu.AttachTo(this); this.Ram = ram; this.VideoCard = videoCard; }
public Motherboard(Cpu cpu, IRam ram, VideoCard videoCard) { cpu.AttachTo(this); this.Ram = ram; this.VideoCard = videoCard; }
public MotherBoard(Cpu cpu, RAM ram, IDrawable video) { cpu.AttachTo(this); this.ramOnTheBoard = ram; this.integratedVideoCard = video; }