Esempio n. 1
0
 public RedheadDuck()
 {
     quackBehavior = new QuackWithWings();
     flyBehavior   = new FlyWithWings();
 }
Esempio n. 2
0
 public RubberDuck()
 {
     quackBehavior = new QuackWithWings();
     flyBehavior   = new FlyNoWay();
 }
Esempio n. 3
0
 public MallardDuck()
 {
     quackBehavior = new QuackWithWings();
     flyBehavior   = new FlyWithWings();
 }