示例#1
0
 public CommandFactory(AbstractComputer computer)
 {
     this.computer = computer;
 }
示例#2
0
 public ProcessCommand(AbstractComputer computer)
 {
     this.computer = computer;
 }
示例#3
0
 public ChargeCommand(AbstractComputer computer)
 {
     this.computer = computer;
 }
示例#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)
 {
 }
示例#5
0
 public PlayCommand(AbstractComputer computer)
 {
     this.computer = computer;
 }