Exemplo n.º 1
0
 private void btn_Them_Click(object sender, EventArgs e)
 {
     ServiceManageStaff.ChucVu cv = new ServiceManageStaff.ChucVu();
     cv.CVname = txt_TenCV.Text;
     obj.AddChucVu(cv);
     showCV();
 }
Exemplo n.º 2
0
 private void btn_Xoa_Click(object sender, EventArgs e)
 {
     ServiceManageStaff.ChucVu cv = new ServiceManageStaff.ChucVu();
     cv.CVid = (int)DGV_chucvu.CurrentRow.Cells["maCv"].Value;
     obj.DeleteChucVu(cv);
     btn_Xoa.Enabled = false;
     showCV();
 }
Exemplo n.º 3
0
 private void btn_Sua_Click(object sender, EventArgs e)
 {
     ServiceManageStaff.ChucVu cv = new ServiceManageStaff.ChucVu();
     cv.CVid   = (int)DGV_chucvu.CurrentRow.Cells["maCv"].Value;
     cv.CVname = txt_TenCV.Text;
     obj.UpdateChucVu(cv);
     showCV();
     btn_Sua.Enabled = false;
 }