public frmTTNV(DTO.DTONHANVIEN dtoNhanVien,bool Them,bool Sua) { InitializeComponent(); if (NhanVien.LayTheoMaNHANVIEN(dtoNhanVien.MANV).Count > 0) dtoNhanVien = NhanVien.LayTheoMaNHANVIEN(dtoNhanVien.MANV)[0]; this.dtoNhanVien = dtoNhanVien; this.Sua = Sua; this.Them = Them; }
private void btnThongTinND_ItemClick(object sender, ItemClickEventArgs e) { DTO.DTONHANVIEN _dto=new DTO.DTONHANVIEN(); _dto.MANV=clsXuLy.MANV; frmTTNV _frm = new frmTTNV(_dto, false, false); _frm.StartPosition = FormStartPosition.CenterScreen; _frm.ShowDialog(); }
public usrCTNhanVien(DTO.DTONHANVIEN dtoNhanVien) { InitializeComponent(); this.dtoNhanVien = dtoNhanVien; }
private void btnThemNV_Click(object sender, EventArgs e) { DTO.DTONHANVIEN _nv = new DTO.DTONHANVIEN(); _nv.HINH = ""; _nv.MANV = 0; _nv.NGAYVAOLAM = DateTime.Now; frmTTNV _frm = new frmTTNV(_nv, true, false); _frm.HanhDong += new frmTTNV.HanhHongCTNV(HanhDongCTNV); _frm.StartPosition = FormStartPosition.CenterScreen; _frm.ShowDialog(); }