private void Btn_satisKaydiSil_Click(object sender, EventArgs e)
 {
     BusinessLogicLayer.BLL bLL = new BusinessLogicLayer.BLL();
     if (MessageBox.Show("Silmek istediğinize emin misiniz?", "Bilgilendirme", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
     {
         int ReturnValue = bLL.SatisKaydiSil(Convert.ToInt32(numUpd_ks_ULC.Value));
         if (ReturnValue > 0)
         {
             MessageBox.Show("Kayıt başarıyla silindi.", "Bilgilendirme", MessageBoxButtons.OK, MessageBoxIcon.Information);
             yenile();
         }
         else
         {
             MessageBox.Show("Hatali giriş", "Bilgilendirme", MessageBoxButtons.OK, MessageBoxIcon.Warning);
         }
     }
 }