Пример #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;
 }