public AddCommand(ArithmeticDevice arithmeticDevice, int operand) : base(arithmeticDevice, operand) { }
public Command(ArithmeticDevice arithmeticDevice, int operand) { this.arithmeticDevice = arithmeticDevice; this.operand = operand; }