private void simpleButtonAppointmentSet_Click(object sender, EventArgs e)
        {
            DateTime appointmentDateTime = CreateAppointmentDateTime();

            if (appointmentDateTime.Hour == 0)
            {
                MessageBox.Show("Lütfen randevu saatini seçiniz.", "Uyarı", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                return;
            }
            else
            {
                int result = bllMember.SetNewAppointment(appointmentDateTime, member, (Doctor)listBoxControlDoctor.SelectedItem, (Hospital)listBoxControlHospital.SelectedItem);
                if (result == 1)
                {
                    MessageBox.Show("Randevunuz başarıyla kaydedilmiştir.", "Bilgi", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    comboBoxEditCity.SelectedItem = null;
                    comboBoxEditCity.Text         = "İl seçimi yapınız...";
                }
                else
                {
                    MessageBox.Show("Seçmiş olduğunuz saate bir başkası randevu almıştır. Lütfen yenileyip tekrar deneyiniz.", "Uyarı", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                    return;
                }
            }
        }