public void notifyFirstMove(int gameId)
        {
            Game g = listOfGames.ElementAt(gameId - 1);
            //valib juhusliku mängija, kes soovib muudab koodi nõnda, et käib väiksema trumbi omanik
            Random random   = new Random();
            int    tmp      = random.Next(0, g.Count);
            long   playerId = g.Players[tmp].Id;

            g.MovesIndex = tmp;
            g.HitsIndex  = tmp < g.Count - 1 ? tmp + 1 : 0;
            for (int i = 0; i < g.Count; i++)
            {
                ServiceUser      p  = g.Players[i];
                Subscriber       s  = getSubscriberById(p.Id);
                IServiceCallback cb = s.callback;

                cb.OnNotifyFirstMove(playerId, g.Players[g.HitsIndex].Id, g.Id);
                Trace.WriteLine("SERVICE: Calling back to notify first move!");
            }
        }