private void txtAdSoyadAra_OnValueChanged(object sender, EventArgs e)
        {
            dgvHastalar.Rows.Clear();
            var sayac  = 0;
            var model2 = _hastaService.HastaListWithSorgu(x => (x.Ad + " " + x.Soyad).Contains(txtAdSoyadAra.Text) && x.CepTel.Contains(txtTelefonAra.Text) && x.TCKimlikNo.Contains(txtTCKimlikNoAra.Text))
                         .Select(x => new
            {
                HastaId = x.HastaID,
                AdSoyad = x.Ad + " " + x.Soyad,
                TCNo    = x.TCKimlikNo,
                Telefon = x.CepTel,
                Kurum   = x.Kurumlar.KurumAd
            });

            foreach (var item in model2)
            {
                dgvHastalar.Rows.Add();
                dgvHastalar.Rows[sayac].Cells[0].Value = item.HastaId;
                dgvHastalar.Rows[sayac].Cells[1].Value = item.AdSoyad;
                dgvHastalar.Rows[sayac].Cells[2].Value = item.TCNo;
                dgvHastalar.Rows[sayac].Cells[3].Value = item.Telefon;
                dgvHastalar.Rows[sayac].Cells[4].Value = item.Kurum;
                sayac++;
            }
        }