Esempio n. 1
0
 public DivideCommand(IMathMaker mathMaker)
 {
     _mathMaker = mathMaker;
 }
 public MultiplyCommand(IMathMaker mathMaker)
 {
     _mathMaker = mathMaker;
 }
 public SubstractCommand(IMathMaker mathMaker)
 {
     _mathMaker = mathMaker;
 }
Esempio n. 4
0
 public AddCommand(IMathMaker mathMaker)
 {
     _mathMaker = mathMaker;
 }