private void btnGiris_Click(object sender, EventArgs e)
        {
            string KAd, Sifre, Sonuc;

            KAd   = txtKAd.Text;
            Sifre = txtSifre.Text;

            Sonuc = KullaniciIslemleri.Login(KAd, Sifre);
            if (Sonuc == "Yes")
            {
                MessageBox.Show("Giriş Yapıldı");
                frmRezervasyon FR = new frmRezervasyon();
                FR.Show();
            }
            else
            {
                MessageBox.Show("Kullanıcı Adı veya Şifre Yanlış");
            }
        }
        private void btnGiris_Click(object sender, EventArgs e)
        {
            string KAd, Sifre, Sonuc;

            KAd = txtKAd.Text;
            Sifre = txtSifre.Text;

            Sonuc = KullaniciIslemleri.Login(KAd, Sifre);
            if(Sonuc == "Yes")
            {
                MessageBox.Show("Giriş Yapıldı");
                frmRezervasyon FR = new frmRezervasyon();
                FR.Show();
            }
            else
            {
                MessageBox.Show("Kullanıcı Adı veya Şifre Yanlış");
            }
        }