private void DeleteAccompanyingGuest(int secGuestId)
    {
        SecondaryGuests sg = new SecondaryGuests();

        sg.SecondaryGuest_ID = secGuestId;
        sg.SelectOne();
        sg.Delete();
        BindSecondaryGuests();
    }