public UserRattingItem RatingGetUser(IDbConnection connection, IGameUserService gu, int userId)
        {
            var user = gu.GetGameUser(connection, userId);
            var top  = gu.GetTopPosition(connection, user.Id, user.PvpPoint);

            return(new UserRattingItem(user, top));
        }