private void btnXong_Click(object sender, EventArgs e) { String err = ""; if (nguoiDungBLL.KiemTraTrungTaiKhoan(txtTaiKhoan.Text)) { MessageBox.Show("Tài khoản đã có, Vui lòng nhập tài khoản có có nội dung khác !!!"); } else { if (!nguoiDungBLL.ThemNguoiDung(ref err, txtTaiKhoan.Text, txtPassword.Text, txtHoTen.Text, txtNoiO.Text, txtDienThoai.Text, tbGioiTinh.Text, tbChucVu.SelectedValue.ToString(), txtDanToc.Text, dtpNgaySinh.Value.ToString("yyyy/MM/dd"), dtpNgayVaoLam.Value.ToString("yyyy/MM/dd"), Convert.ToInt32(Math.Round(nudLuongGio.Value)))) { MessageBox.Show("Cập nhật thất bại rồi !!!"); } else { XoaText(); MessageBox.Show("Cập nhật thành công !!!"); } } }