public void Checkout()
        {
            var currentRoundScoreAction = AverageScoreActionsPerRound.CheckoutScoreActions();

            if (currentRoundScoreAction == null)
            {
                return;
            }
            AverageScoreActionsTotal.AddScoreAction(currentRoundScoreAction);
            OnPropertyChanged("CurrentScore");
        }