示例#1
0
 //calculates how many customers purchased a cup of lemonade based on weather, cost of lemonade, and recipe
 public void DetermineBuyers(Day day, Store store)
 {
     store.DetermineNumberOfBuyers(day.weather.accurateWeather[day.weather.dayCounter]);
 }