private void btnXoa_Click(object sender, EventArgs e)
        {
            if (MessageBox.Show("Bạn có muốn xóa khách hàng đang chọn không?", "Xác nhận", MessageBoxButtons.YesNo) == DialogResult.No)
            {
                return;
            }

            int    idx  = dgvDanhMucNhanVien.CurrentCell.RowIndex;
            string maNV = dgvDanhMucNhanVien.Rows[idx].Cells["MaNV"].Value.ToString();

            if (!dbNhanVien.DeleteEmployee(maNV))
            {
                MessageBox.Show("Xóa dữ liệu không thành công", "Lỗi");
                return;
            }
            DataLoad();
        }