Exemplo n.º 1
0
 public SYMathCalculator(ISYReciever reciever)
 {
     _addCommand      = new AddCommand(reciever);
     _subtractCommand = new SubtractCommand(reciever);
     _multiplyCommand = new MultiplyCommand(reciever);
     _divCommand      = new DivCommand(reciever);
     _powCommand      = new PowCommand(reciever);
 }
Exemplo n.º 2
0
 public PowCommand(ISYReciever reciever)
     : base(reciever)
 {
 }
Exemplo n.º 3
0
 public DivCommand(ISYReciever reciever)
     : base(reciever)
 {
 }
Exemplo n.º 4
0
 public AddCommand(ISYReciever reciever)
     : base(reciever)
 {
 }
Exemplo n.º 5
0
 public MultiplyCommand(ISYReciever reciever)
     : base(reciever)
 {
 }
Exemplo n.º 6
0
 public SubtractCommand(ISYReciever reciever)
     : base(reciever)
 {
 }
Exemplo n.º 7
0
 public ASYCommand(ISYReciever rec)
 {
     reciever = rec;
 }