Beispiel #1
0
        public int GetCustomers(Weather day, Random r, Customer c)
        {
            List <Customer> people = new List <Customer>()
            {
            };

            people = c.NumberOfPeople(day, r);
            people = c.CustomerChoice(day, r, people, Iy);
            people = c.RemoveCustomers(people);
            return(people.Count);
        }