Exemple #1
0
 public CommandFactory(AbstractComputer computer)
 {
     this.computer = computer;
 }
Exemple #2
0
 public ProcessCommand(AbstractComputer computer)
 {
     this.computer = computer;
 }
Exemple #3
0
 public ChargeCommand(AbstractComputer computer)
 {
     this.computer = computer;
 }
Exemple #4
0
 public Laptop(AbstractComputer.ComputerType type, CPU cpu, RAM ram, IEnumerable<HardDrive> hardDrives, VideoCard videoCard, IBattery battery, IMotherboard motherBoard)
     : base(type, cpu, ram, hardDrives, videoCard, battery, motherBoard)
 {
 }
Exemple #5
0
 public PlayCommand(AbstractComputer computer)
 {
     this.computer = computer;
 }