Ejemplo n.º 1
0
        public MallardDuck()
        {
            FlyBehavior = new FlyWithWings();
            QuackBehavior = new QuackWithCreek();

        }
Ejemplo n.º 2
0
 public MandarinDuck()
 {
     FlyBehavior   = new FlyWithoutWings();
     QuackBehavior = new QuackWithCreek();
 }