public AnimalWorld_Client(IContinentFactory continent)
 {
     _plantEater = continent.CreatePlantEater();
     _meatEater  = continent.CreateMeatEater();
 }
예제 #2
0
 public string Eat(IPlantEater plantEater)
 {
     return(this.GetType().Name + " eats " + plantEater.GetType().Name);
 }