private void btnThemNhanVien_Click(object sender, EventArgs e) { NhanVien nv = new NhanVien(txtMaNhanVien.Text, txtTenNhanVien.Text, txtDiaChi.Text, txtSoDienThoai.Text); bulnv.themNhanVien(nv); MessageBox.Show("Thêm Nhân Viên Thành công", "Thêm Nhân Viên", MessageBoxButtons.OK); }
private void btnThem_Click(object sender, EventArgs e) { try { BULTaiKhoan bultk = new BULTaiKhoan(); bultk.themTaiKhoan(new TaiKhoan(txtTaiKhoan.Text, txtMatKhau.Text, cbQuyen.Text)); BULNhanVien bul = new BULNhanVien(); bul.themNhanVien(new NhanVien(0, txtTenNhanVien.Text, txtSoDienThoai.Text, txtChungMinhThu.Text, txtTaiKhoan.Text)); frmST.hienDanhSachNhanVien(); MessageBox.Show("Thêm thành công", "Thành công", MessageBoxButtons.OK, MessageBoxIcon.Information); this.Close(); } catch (Exception) { MessageBox.Show("Thao tác thất bạt, dữ liệu sai", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Stop); } }