Drastically reduced the processing between every frame (4X less actions)

This commit is contained in:
2023-01-11 14:10:30 +01:00
parent 435193b59f
commit a092c05866
4 changed files with 81 additions and 93 deletions
+3 -3
View File
@@ -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;
}
}