예제 #1
0
 public Server(Cpu cpu, BaseHardDrive drives, RAM ram, IDrawable videoCard)
     : base(cpu, drives, ram, videoCard)
 {
 }
예제 #2
0
 public PersonalComputer(Cpu cpu, BaseHardDrive hdd, RAM ram, IDrawable videoCard)
     : base(cpu, hdd, ram, videoCard)
 {
 }
예제 #3
0
 public PersonalComputer(Cpu cpu, BaseHardDrive hdd, RAM ram, IDrawable videoCard)
     : base(cpu, hdd, ram, videoCard)
 {
 }
예제 #4
0
 public Server(Cpu cpu, BaseHardDrive drives, RAM ram, IDrawable videoCard) : base(cpu, drives, ram, videoCard)
 {
 }
예제 #5
0
 public Laptop(Cpu cpu, BaseHardDrive hardDrives, RAM ram, IDrawable videoCard, LaptopBattery battery)
     : base(cpu, hardDrives, ram, videoCard)
 {
     this.battery = battery;
 }
예제 #6
0
 public BaseComputer(Cpu cpu, BaseHardDrive hardDrives, RAM ram, IDrawable videoCard)
 {
     this.Cpu         = cpu;
     this.HardDrives  = hardDrives;
     this.Motherboard = new MotherBoard(cpu, ram, videoCard);
 }
예제 #7
0
 public Laptop(Cpu cpu, BaseHardDrive hardDrives, RAM ram, IDrawable videoCard, LaptopBattery battery)
     : base(cpu, hardDrives, ram, videoCard)
 {
     this.battery = battery;
 }