public Boolean eliminar_sys() { Int32 id = Int32.Parse(dg_colaboradores.CurrentRow.Cells["Id"].Value.ToString()); String nombre = dg_colaboradores.CurrentRow.Cells["Nombre"].Value.ToString(); DialogResult dialogResult = MessageBox.Show("¿Desea establecer como inactivo al colaborador " + nombre + " ?", "Inactivo", MessageBoxButtons.YesNo); if (dialogResult == DialogResult.Yes) { Colaborador colaborador = new Colaborador(); colaborador.Id = id; colaborador.Estado = false; if (colaborador.eliminar()) { MessageBox.Show("Colaborador inactivo", "Excelente!", MessageBoxButtons.OK, MessageBoxIcon.Information); return(true); } else { MessageBox.Show("Ocurrió un error", "Ups!", MessageBoxButtons.OK, MessageBoxIcon.Error); return(false); } } return(false); }