private void btn_cerrar_Click(object sender, EventArgs e) { if (MessageBox.Show("Seguro que desea cerrar el Bug?", "Aviso", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) == DialogResult.OK) { int id; if (row_selected.Index != -1) { id = Convert.ToInt32(row_selected.Cells["id_bug_col"].Value); oBugService.cerrar(oBugService.consultarBugsPorId(id)); btnConsultar_Click(sender, e); } } }