示例#1
0
 public AnimalWorldClient(AbstractFactories.ContinentAbstractFactory factory)
 {
     _carnivore = factory.CreateCarnivore();
     _herbivore = factory.CreateHerbivore();
 }
示例#2
0
 public override void Runaway(AbstractProducts.CarnivoreAbstractProduct carnivore)
 {
     Console.WriteLine(this.GetType().Name + " tries to escape from " + carnivore.GetType().Name);
 }