Exemplo n.º 1
0
 public AbstractCommand(OperationApi operation)
 {
     this.operation = operation;
 }
Exemplo n.º 2
0
 public SubstractCommand(OperationApi operation, int opeNum)
     : base(operation)
 {
     this.opeNum = opeNum;
 }
Exemplo n.º 3
0
 public AddCommand(OperationApi operation, int opeNum)
     : base(operation)
 {
     this.opeNum = opeNum;
 }
Exemplo n.º 4
0
 public AddCommand(OperationApi operation, int opeNum)
 {
     this.operation = operation;
     this.opeNum    = opeNum;
 }
Exemplo n.º 5
0
 public SubstractCommand(OperationApi operation, int opeNum)
 {
     this.operation = operation;
     this.opeNum    = opeNum;
 }