Exemplo n.º 1
0
 public Motherboard(Cpu cpu, VideoCard videoCard, IRam ram)
 {
     cpu.AttachTo(this);
     this.Ram = ram;
     this.VideoCard = videoCard;
 }
Exemplo n.º 2
0
 public Motherboard(Cpu cpu, IRam ram, VideoCard videoCard)
 {
     cpu.AttachTo(this);
     this.Ram       = ram;
     this.VideoCard = videoCard;
 }
Exemplo n.º 3
0
 public MotherBoard(Cpu cpu, RAM ram, IDrawable video)
 {
     cpu.AttachTo(this);
     this.ramOnTheBoard       = ram;
     this.integratedVideoCard = video;
 }
Exemplo n.º 4
0
 public MotherBoard(Cpu cpu, RAM ram, IDrawable video)
 {
     cpu.AttachTo(this);
     this.ramOnTheBoard = ram;
     this.integratedVideoCard = video;
 }