private void xoa_cong_tac() { var v_dlg_confirm = XtraMessageBox.Show("Bạn có chắc chắn muốn xóa công tác (việc này chỉ nên thực hiện khi bạn cập nhật nhầm công tác cho nhân viên)!", "THÔNG BÁO", MessageBoxButtons.YesNo, MessageBoxIcon.Stop); if(v_dlg_confirm == System.Windows.Forms.DialogResult.Yes) { var v_dc_id_gd_cong_tac = Convert.ToDecimal(m_grv.GetRowCellValue(m_grv.FocusedRowHandle, V_GD_CONG_TAC_2.ID)); US_GD_CONG_TAC v_us = new US_GD_CONG_TAC(); v_us.DeleteByID(v_dc_id_gd_cong_tac); XtraMessageBox.Show("Đã xóa công tác nhân viên thành công!", "THÔNG BÁO", MessageBoxButtons.OK, MessageBoxIcon.Information); refresh_data(); } }