private void btn_aceptar_Click(object sender, EventArgs e)
        {
            BugService service = null;
            List <int> ids     = new List <int>();

            if (cbo_estados.SelectedIndex == -1 || txt_obs.Text == "")
            {
                MessageBox.Show("Debe completar los campos indicados con (*)");
            }
            else
            {
                service = new BugService();
                foreach (DataGridViewRow row in dgv_bugs.Rows)
                {
                    ids.Add(Convert.ToInt32(row.Cells["id_bug_col"].Value.ToString()));
                }

                if (service.ActualizarEstadoBugs(ids, (int)cbo_estados.SelectedValue, txt_obs.Text))
                {
                    MessageBox.Show("Bugs actualizados!", "Aviso");
                    this.Close();
                }
                else
                {
                    MessageBox.Show("Ha ocurrido un error al actualizar los bugs!", "ERROR");
                }
            }
        }