private async Task <bool> IsMoreThan17Points(User user, int roundId)
        {
            var moves = await _moveRepository.Get(user.Id, roundId);

            var cards = await _cardRepository.Get(moves);

            var a = cards.Sum(x => x.CardValue);

            if (cards.Sum(x => x.CardValue) > 17)
            {
                return(true);
            }
            return(false);
        }