private void btnGuncelle_Click(object sender, EventArgs e)
        {
            DbOperations   dbOperations   = DbOperations.GetInstance();
            DataTable      gelenVeri      = dbOperations.Sorgu("son_dosyano_getir_hasta");
            int            gelenDosyaNo   = (int)gelenVeri.Rows[0][0];
            hastaBilgileri hastaBilgileri = new hastaBilgileri(++gelenDosyaNo);

            hastaBilgileri.ShowDialog();
        }
 private void btnHastaBilgileri_Click(object sender, EventArgs e)
 {
     if (SeciliHasta != null)
     {
         hastaBilgileri hastaBilgileri = new hastaBilgileri(SeciliHasta, this);
         hastaBilgileri.ShowDialog();
         SeciliHastaBilgileriYukle();
     }
 }