private void pbcheck_Click(object sender, EventArgs e)
        {
            bool flag = KhachHangBUS.KiemTraKH(txtMaKH.Text);

            if (flag == false)
            {
                btnThemSP.Enabled = false;
                button1.Enabled   = true;
                MessageBox.Show("Khách hàng không tồn tại.", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
            else
            {
                btnThemSP.Enabled = true;
                txtMaKH.ReadOnly  = true;
                button1.Enabled   = false;
                txtGiamGia.Text   = KhachHangBUS.CapDoGiamGia(txtMaKH.Text);
                MessageBox.Show("Khách hàng tồn tại.", "Chúc mừng", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
        }