private bool playerOneChoosingCompetition(string i_NameOfPlayerOne)
        {
            string playerChoice;
            bool   v_ValidInput;

            do
            {
                UI.printChoosingOfCompetitionForPlayerOne(i_NameOfPlayerOne);
                playerChoice = System.Console.ReadLine();
                exitIfQ(playerChoice);
                v_ValidInput = CheckInput.IsValidPlayerOneEnemyChoice(playerChoice);
            }while (v_ValidInput == false);

            return(playerChoice == "1");
        }