Exemplo n.º 1
0
 public MallardDuck()
 {
     QuackBehavior = new QuackSound();
     FlyBehavior = new FlyWithWings();
 }
Exemplo n.º 2
0
 public ModelDuck()
 {
     FlyBehavior = new FlyNoWay();
     QuackBehavior = new QuackSound();
 }