Beispiel #1
0
 //construct
 public Day(Random random)
 {
     this.random = random;
     customer    = new Customer(random);
     customers   = new List <Customer>();
     weather     = new Weather(random);
     weather.GenerateConditions();
     weather.GenerateTemperature();
     GenerateCustomers();
 }