private void SaveRoundResult(RouletteRound currentRound)
        {
            //await Task.Run(() =>
            //{
            //    _roundRepo.SaveRoundResults(currentRound.RoundResult);
            //});

            _roundRepo.SaveRoundResults(currentRound.RoundResult);
            Console.WriteLine("Creating new round");

            //this doesnt work
        }