static void FeedHerbivores(IHerbivores herbivores) { herbivores.FindFood(); herbivores.EatPlant(); }
public void FeedingOneHerbivore(IHerbivores herbivore) { herbivore.FindFood(); herbivore.EatThePlant(); }