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