Drastically reduced the processing between every frame (4X less actions)
This commit is contained in:
+3
-3
@@ -57,9 +57,9 @@ namespace Caisses
|
||||
pbxCaisses.Image = result[1];
|
||||
|
||||
lblClients.Text = "Clients : " + store.Clients.Count();
|
||||
lblClientsWithoutCheckout.Text = "Clients without checkout : "+ store.GetClientsWithoutCheckout().Count();
|
||||
lblAvaiblePlaces.Text = "Avaible places = " + store.GetAmountOfPlacesLeft();
|
||||
lblAvgWaitingTime.Text = "AverageWaitingTime = " + store.GetAverageWaitingTime();
|
||||
lblClientsWithoutCheckout.Text = "Clients without checkout : "+ store.WaitingClients.Count();
|
||||
lblAvaiblePlaces.Text = "Avaible places = " + store.TotalPlacesLeftCount;
|
||||
lblAvgWaitingTime.Text = "AverageWaitingTime = " + store.AverageWaitingTime;
|
||||
lblTime.Text = "Time of the day : "+store.TimeOfTheDayInHours + ":"+store.TimeOfTheDayInMinuts % 60;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user