Ejemplo n.º 1
0
 // Constructor
 public AnimalWorld(ContinentFactory factory)
 {
     _carnivore = factory.CreateCarnivore();
       _herbivore = factory.CreateHerbivore();
 }
Ejemplo n.º 2
0
 public override void Eat(Carnivore h)
 {
     // Eat Bison
     Console.WriteLine(this.GetType().Name +
       " eats " + h.GetType().Name);
 }
Ejemplo n.º 3
0
 // Constructor
 public AnimalWorld(ContinentFactory factory)
 {
     _carnivore = factory.CreateCarnivore();
     _herbivore = factory.CreateHerbivore();
 }
Ejemplo n.º 4
0
 public abstract void Eat(Carnivore a);