예제 #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;
 }