Ejemplo n.º 1
0
 public MallardDuck()
 {
     FlyBehavior   = new FlyWithWings();
     QuackBehavior = new QuackQuack();
 }
Ejemplo n.º 2
0
 public ModelDuck()
 {
     FlyBehavior   = new FlyNoWay();
     QuackBehavior = new QuackQuack();
 }
Ejemplo n.º 3
0
 public RedheadDuck()
 {
     FlyBehavior   = new FlyWithWings();
     QuackBehavior = new QuackQuack();
 }