public int GetCurrentConsecutiveAnswers()
    {
        int cant = -1;

        if (mMatch != null)
        {
            if (mMatchData != null)
            {
                cant = mMatchData.GetCurrentConsecutivesAnswers(mMatch.SelfParticipantId);
            }
        }
        return(cant);
    }