Beispiel #1
0
 public PCComputer(Computers.Components.Cpu cpu, IEnumerable <HardDriver> hardDrives, Motherboard motherboard)
     : base(cpu, hardDrives, motherboard)
 {
 }
Beispiel #2
0
 public Computer(Cpu cpu, IEnumerable <HardDriver> hardDrives, Motherboard motherboard)
 {
     this.Cpu         = cpu;
     this.HardDrives  = hardDrives;
     this.Motherboard = motherboard;
 }
 public LaptopComputer(Computers.Components.Cpu cpu, IEnumerable <HardDriver> hardDrives, Motherboard motherboard, LaptopBattery battery) : base(cpu, hardDrives, motherboard)
 {
     this.battery = battery;
 }
Beispiel #4
0
 public Cpu(byte numberOfCores, Motherboard motherboard, IRandomNumbersProvider randomProvider)
 {
     this.MotherBoard    = motherboard;
     this.NumberOfCores  = numberOfCores;
     this.RandomProvider = randomProvider;
 }