Beispiel #1
0
 public void ChooseDays(Recipe recipe, Weather weather, Game game, Money money, Store store, Inventory inventory, Customer customer, Day day)
 {
     foreach (var dayOfTheWeek in dayOfTheWeek)
     {
         Console.WriteLine("Today is {0}", dayOfTheWeek);
         weather.DetermineWeather();
         weather.ShowPredictedWeather(recipe, game, money, store, inventory, customer, weather, day);
     }
 }