/// <summary>
        /// Remove a contestant that has been selected to participate
        /// </summary>
        private void RemoveContestantFromSubContest()
        {
            try
            {
                var contestantFirstName = View.ListViewSubContestContestants.SelectedItems[0].SubItems[0].Text;
                var contestantLastName  = View.ListViewSubContestContestants.SelectedItems[0].SubItems[1].Text;

                Contestant contestantToBeRemoved = null;

                foreach (var c in SubContestContestants)
                {
                    if (String.Equals(c.FirstName, contestantFirstName) && String.Equals(c.LastName, contestantLastName))
                    {
                        contestantToBeRemoved = c;
                    }
                }


                SubContestContestants.Remove(contestantToBeRemoved);

                View.ListViewSubContestContestants.Items.Remove(View.ListViewSubContestContestants.SelectedItems[0]);
            }
            catch (ArgumentOutOfRangeException)
            {
                MessageBox.Show("Välj en deltagare!");
            }
        }