// xoa
 private void button1_Click(object sender, EventArgs e)
 {
     if (MessageBox.Show("Bạn có thực sự muốn xóa nhà cung cấp này không ?", "Xác nhận", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
     {
         string codeId = dataGridView1.Rows[dataGridView1.CurrentRow.Index].Cells[0].Value.ToString();
         ncc = new BUS_NhaCungCap();
         if (ncc.XoaNcc(codeId))
         {
             MessageBox.Show("Đã xoá nhà cung cấp !", "Thông báo", MessageBoxButtons.OK);
             DataTable tbl = ncc.DSNcc();
             dataGridView1.DataSource = tbl;
         }
         else
         {
             MessageBox.Show("Không xóa được nhà cung cấp ! Vui lòng thử lại !", "Lỗi ", MessageBoxButtons.OK, MessageBoxIcon.Error);
         }
     }
 }