private void buttonXoa_Click(object sender, EventArgs e) { string ma = comboBoxMaKho.Text; if (ma != "") { bool Xoa = XL_KhoHang.XoaKhoHang(ma); if (Xoa) { MessageBox.Show("Xóa thành công !"); this.Close(); } else { MessageBox.Show("Xóa thất bại !"); this.Close(); } } }
public int XoaKhoHang(string makho) { return(xl_kho.XoaKhoHang(makho)); }