示例#1
0
 public AddCommand(ArithmeticDevice arithmeticDevice, int operand) : base(arithmeticDevice, operand)
 {
 }
示例#2
0
 public Command(ArithmeticDevice arithmeticDevice, int operand)
 {
     this.arithmeticDevice = arithmeticDevice;
     this.operand          = operand;
 }