Пример #1
0
 public AnimalWorld(ContinentFactory factory)
 {
     this.herbivore = factory.CreateHerbivore();
     this.carnivore = factory.CreateCarnivore();
 }
Пример #2
0
 public Ecosystem(ContinentFactory factory)
 {
     _herbivore = factory.CreateHerbivore();
     _carnivore = factory.CreateCarnivore();
 }