Ejemplo n.º 1
0
 // Constructor
 public AnimalWorld(ContinentFactory factory)
 {
     carnivore = factory.CreateCarnivore();
     herbivore = factory.CreateHerbivore();
 }
Ejemplo n.º 2
0
 // Constructor
 public AnimalWorld(ContinentFactory factory)
 {
     _carnivore = factory.CreateCarnivore();
     _herbivore = factory.CreateHerbivore();
 }
Ejemplo n.º 3
0
 public override void Eat(Carnivore c)
 {
     Console.WriteLine(this.GetType().Name +
         " eats " + c.GetType().Name);
 }
Ejemplo n.º 4
0
 // Constructor
 public AnimalWorld(ContinentFactory factory)
 {
     _carnivore = factory.CreateCarnivore();
     _herbivore = factory.CreateHerbivore();
     _problem = factory.CreateProblem();
     _giant = factory.CreateGiant();
     _giant2 = factory.CreateSmallGiant();
 }
Ejemplo n.º 5
0
 public abstract void Eat(Carnivore c);