private void btnLuu_Click(object sender, EventArgs e)
        {
            string   maNV     = txtMaNV.Text.Trim();
            string   hoTenNV  = txtTenNV.Text.Trim();
            DateTime ngaySinh = DateTime.Parse(dtpNgaySinh.Value.ToString());
            string   sdt      = txtSDT.Text.Trim();
            string   diaChi   = txtDiaChi.Text.Trim();
            decimal  luong    = 0;

            try
            {
                luong = decimal.Parse(txtLuong.Text.Trim());
            }
            catch { }
            string gioiTinh = "Nữ";

            if (rdNam.Checked == true)
            {
                gioiTinh = "Nam";
            }

            if (isInsert == true)
            {
                if (!dbNhanVien.InsertEmployee(maNV, hoTenNV,
                                               ngaySinh, gioiTinh, diaChi, sdt, luong))
                {
                    MessageBox.Show("Không thêm được dữ liệu!", "Lỗi");
                    txtTenNV.Focus();
                    return;
                }
                else
                {
                    isInsert = false;
                }
            }
            else
            {
                if (!dbNhanVien.UpdateEmployee(maNV, hoTenNV,
                                               ngaySinh, gioiTinh, diaChi, sdt, luong))
                {
                    MessageBox.Show("Không cập nhật được dữ liệu!", "Lỗi");
                    txtTenNV.Focus();
                    return;
                }
            }
            DataLoad();
            SetSelectedRow(maNV);
            DataBind();

            btnThem.Enabled = true;
            btnSua.Enabled  = true;
            btnHuy.Enabled  = false;
            btnLuu.Enabled  = false;
        }