public Laptop(IMotherboard motherboard, Cpu cpu, HardDriveComponent hardDrive, LaptopBattery laptopBattery)
 {
     this.Motherboard = motherboard;
     this.Cpu = cpu;
     this.HardDrive = hardDrive;
     this.LaptopBattery = laptopBattery;
 }
 public Server(IMotherboard motherboard, Cpu cpu, HardDriveComponent hardDrive)
 {
     this.Motherboard = motherboard;
     this.Cpu = cpu;
     this.HardDrive = hardDrive;
 }
 public PersonalComputer(IMotherboard motherboard, Cpu cpu, HardDriveComponent hardDrive)
 {
     this.Motherboard = motherboard;
     this.Cpu = cpu;
     this.HardDrive = hardDrive;
 }