Example #1
0
 public void TotalBuyingCupOfLemonade(Customer customer, Weather weather, Recipe recipe, Player player, int temperature, Random random)
 {
     customer.CustomerBuyingCupOfLemonadeRainyWeather(weather, player, random);
     customer.CustomerBuyingCupOfLemonadeCloudyWeather(weather, player, random);
     customer.CustomerBuyingCupOfLemonadeSunnyWeather(weather, player, random);
     customer.CustomerBuyingCupOfLemonadeHighPrice(recipe, player, random);
     customer.CustomerBuyingCupOfLemonadeMediumPrice(recipe, player, random);
     customer.CustomerBuyingCupOfLemonadeLowPrice(recipe, player, random);
     customer.CustomerBuyingCupOfLemonadeLowTemperature(day.weather.currentTemperature, player, random);
     customer.CustomerBuyingCupOfLemonadeAverageTemperature(day.weather.currentTemperature, player, random);
     customer.CustomerBuyingCupOfLemonadeHighTemperature(day.weather.currentTemperature, player, random);
 }