public string Feed() { string nothing = "Nothing to eat"; if (FoodBowlEmpty) { nothing = Feeder.ReplenishFood(); } return(nothing); }
public string ReplenishFood() { return(Feeder.ReplenishFood()); }