private void txtKitapAdi_TextChanged(object sender, EventArgs e)
 {
     if (!String.IsNullOrEmpty(txtKitapAdi.Text))
     {
         dgwKitaps.DataSource = _kitapService.GetKitapByKitapAdi(txtKitapAdi.Text);
     }
     else
     {
         LoadKitaps();
     }
 }