private async void GetTimelogs()
        {
            List <TimeRace> list = await BikeGatesRepository.GetTimeRaceByName(ChoicePlayer.listNames[0].ToString());

            if (list.Count != 0)
            {
                if (list[0].Name == ChoicePlayer.listNames[0])
                {
                    if (list[0].isFinished == 1)
                    {
                        BikeGatesRepository.SetTimeRaceTime("{ 'name' : '" + ChoicePlayer.listNames[0] + "', 'isFinished' : 0, 'totalTime' : " + CountLabel.Text + "}");
                        // going to next page
                        listTime.Clear();
                        listTime.Add(_countSeconds);
                        Navigation.PushAsync(new EndScreenTimeRace());
                    }
                }
            }
        }