コード例 #1
0
        public string Feed()
        {
            string nothing = "Nothing to eat";

            if (FoodBowlEmpty)
            {
                nothing = Feeder.ReplenishFood();
            }

            return(nothing);
        }
コード例 #2
0
ファイル: FeederService.cs プロジェクト: klahox/Tests
 public string ReplenishFood()
 {
     return(Feeder.ReplenishFood());
 }