Exemplo n.º 1
0
 public ModelDuck()
 {
     flyBehavior   = new FlyNoWay();
     quackBehavior = new Quack();
 }
Exemplo n.º 2
0
 public RedheadDuck()
 {
     flyBehavior   = new FlyWithWings();
     quackBehavior = new Quack();
 }
Exemplo n.º 3
0
 public MallardDuck()
 {
     flyBehavior   = new FlyWithWings();
     quackBehavior = new Quack();
 }