private void button_xoa_Click(object sender, EventArgs e) { DTO.Nhanvien nv = new DTO.Nhanvien(); nv.manv = textBox_manv.Text; if (bllNV.DeleteNhanVien(nv)) { MessageBox.Show("Xóa nhân viên thành công!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); ShowAllNhanVien(); textBox_tennv.Clear(); // Clear() để xóa hết kí tự khi vừa thêm xong textBox_diachi.Clear(); textBox_sdt.Clear(); textBox_cmnd.Clear(); textBox_user.Clear(); textBox_pass.Clear(); textBox_passlv2.Clear(); textBox_email.Clear(); comboBox_chucvu.Text = ""; } else { MessageBox.Show("Có lỗi xảy ra, xin hãy thử lại!", "Thông báo lỗi", MessageBoxButtons.OK, MessageBoxIcon.Stop); } }
internal bool CheckDataNV(DTO.Nhanvien nv) { if (nv.manv == null || nv.tennv == null || nv.diachi == null || nv.sdt == null || nv.email == null || nv.cmnd == null || nv.username == null || nv.password == null || nv.loai == null || nv.passwordlv2 == null) { return(false); } else { return(true); } }
private void button_them_Click(object sender, EventArgs e) { if (CheckData()) { DTO.Nhanvien nv = new DTO.Nhanvien(); //sb.masb = textBox_masb.Text; nv.tennv = textBox_tennv.Text; nv.diachi = textBox_diachi.Text; nv.sdt = textBox_sdt.Text; nv.cmnd = textBox_cmnd.Text; nv.username = textBox_user.Text; nv.password = textBox_pass.Text; nv.passwordlv2 = textBox_passlv2.Text; nv.email = textBox_email.Text; nv.loai = comboBox_chucvu.Text; if (bllNV.check_trung_username_insert(nv)) { if (bllNV.InsertNhanVien(nv)) { MessageBox.Show("Thêm nhân viên thành công!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); ShowAllNhanVien(); textBox_tennv.Clear(); // Clear() để xóa hết kí tự khi vừa thêm xong textBox_diachi.Clear(); textBox_sdt.Clear(); textBox_cmnd.Clear(); textBox_user.Clear(); textBox_pass.Clear(); textBox_passlv2.Clear(); textBox_email.Clear(); comboBox_chucvu.Text = ""; } else { MessageBox.Show("Có lỗi xảy ra, xin hãy thử lại!", "Thông báo lỗi", MessageBoxButtons.OK, MessageBoxIcon.Stop); } } else { MessageBox.Show("Tài khoản đã tồn tại!", "Thông báo lỗi", MessageBoxButtons.OK, MessageBoxIcon.Stop); return; } } }
private void button_cap_nhat_Click(object sender, EventArgs e) { if (check_null()) { DTO.Nhanvien nv = new DTO.Nhanvien(); nv.manv = textBox_manv.Text; nv.tennv = textBox_tennv.Text; nv.diachi = textBox_diachi.Text; nv.sdt = textBox_sdt.Text; nv.cmnd = textBox_cmnd.Text; nv.username = textBox_user.Text; nv.password = textBox_pass.Text; nv.passwordlv2 = textBox_passlv2.Text; nv.email = textBox_email.Text; nv.loai = comboBox_chucvu.Text; if (bllNV.check_trung_username(nv)) { if (bllNV.UpdateNhanVien(nv)) { MessageBox.Show("Cập nhật thông tin nhân viên thành công!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); ShowAllNhanVien(); textBox_tennv.Clear(); // Clear() để xóa hết kí tự khi vừa thêm xong textBox_diachi.Clear(); textBox_sdt.Clear(); textBox_cmnd.Clear(); textBox_user.Clear(); textBox_pass.Clear(); textBox_passlv2.Clear(); textBox_email.Clear(); comboBox_chucvu.Text = ""; } else { MessageBox.Show("Có lỗi xảy ra, xin hãy thử lại!", "Thông báo lỗi", MessageBoxButtons.OK, MessageBoxIcon.Stop); } } else { MessageBox.Show("Tên tài khoản trùng với tên tài khoản khác!", "Thông báo lỗi", MessageBoxButtons.OK, MessageBoxIcon.Stop); return; } } }