Exemplo n.º 1
0
 internal void Depart(Customer customer)
 {
     customer.DepartureTime = _sim.ClockTime;
     ServedCustomers.Add(customer);
     InSystemCounter.ObserveChange(-1);
 }
Exemplo n.º 2
0
 internal void Arrive(Customer customer)
 {
     customer.ArrivalTime = _sim.ClockTime;
     InSystemCounter.ObserveChange(1);
 }