public void Ara()
 {
     try
     {
         string kriter = "ad";
         if (txtKriter.Text == "Adı")
         {
             kriter = "ad";
         }
         else if (txtKriter.Text == "Soyadı")
         {
             kriter = "soyad";
         }
         else if (txtKriter.Text == "Kimlik No")
         {
             kriter = "tcKimlikNo";
         }
         else if (txtKriter.Text == "Kurum Sicil No")
         {
             kriter = "kurumSicilNo";
         }
         else if (txtKriter.Text == "Dosya No")
         {
             kriter = "dosyaNo";
         }
         dataGridView1.DataSource = Veritabani.Ara("tblHasta", kriter, txtSorgu.Text).Tables[0];
     }
     catch (Exception e)
     {
         MessageBox.Show("Bir hata oluştu:" + e.Message, "UYARI", MessageBoxButtons.OK, MessageBoxIcon.Warning);
     }
 }