public CalculatorClient()
 {
     this.arithmeticCalculate = new ArithmeticCalculateReceiver();
     this.calculate           = new CalculateInvoker();
 }
 public DivCommand(ArithmeticCalculateReceiver arithmeticCalculate, int operand)
 {
     this.arithmeticCalculate = arithmeticCalculate;
     this.operand             = operand;
 }