private void btnDelete_Click(object sender, EventArgs e)
        {
            if (txtMaNV.Text != string.Empty)
            {
                DialogResult result = new DialogResult();
                result = MessageBox.Show("Bạn có muốn xoá nhân viên có mã là " + txtMaNV.Text + " không?",
                                         "Thông báo", MessageBoxButtons.YesNo, MessageBoxIcon.Question);

                if (result != DialogResult.No)
                {
                    try
                    {
                        nhanVienM.delete(txtMaNV.Text);

                        //Thong bao
                        ShowMessageBox.information("Xoá thông tin của nhân viên thông");

                        //reload table NhanVien
                        loadTableNhanVien();

                        //Clear
                        clearAllInput();
                    }
                    catch (DeleteException delEx)
                    {
                        ShowMessageBox.erorr(delEx.Message);
                    }
                    catch (Exception ex)
                    {
                        ShowMessageBox.erorr(ex.Message);
                    }
                }
            }
            else
            {
                ShowMessageBox.erorr("Vui lòng nhập thông tin mã Nhân Viên muốn xoá", "Thông tin thiếu");
            }
        }