private async Task PlayRoundAsync()
        {
            int outcome = _rouletteWheel.Spin();
            await _outputManager.DisplayOutcomeAsync(outcome);

            _numberStore.AddResult(outcome);
        }