private void BtnLuu_Click(object sender, EventArgs e)
 {
     checkBoxNam.Checked  = false;
     checkBoxNu.Checked   = false;
     checkBoxKhac.Checked = false;
     if (them == true)
     {
         if (dbNhanVien.KiemTraMaNV(txtMaNV.Text) == 0)
         {
             if (dbNhanVien.ThemNV(this.txtMaNV.Text, this.txtTenNV.Text, this.cbGioiTinh.Text, this.txtSDT.Text, this.txtDiaChi.Text, this.txtEmail.Text, this.txtMK.Text, this.cbQuyen.Text, this.txtCN.Text) == true)
             {
                 MessageBox.Show("Thêm Thành Công", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                 LoadData();
             }
             else
             {
                 MessageBox.Show("Không Thể Thêm", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
             }
         }
         else
         {
             MessageBox.Show("Trùng Mã Nhân Viên", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Error);
         }
     }
     else
     {
         if (dbNhanVien.CapNhatNV(this.txtMaNV.Text, this.txtTenNV.Text, this.cbGioiTinh.Text, this.txtSDT.Text, this.txtDiaChi.Text, this.txtEmail.Text, this.txtMK.Text, this.cbQuyen.Text, this.txtCN.Text) == true)
         {
             MessageBox.Show("Cập nhật Thành Công", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
             LoadData();
         }
         else
         {
             MessageBox.Show("Không Thể Cập Nhật", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
         }
     }
 }