private async void RefreshStudentList()
        {
            voters = new List <Voter>();
            voters = (List <Voter>) await ElectionConfigurationService.GetAllVotersAsync();

            StudentsSearchList.ItemsSource = voters;
        }