private void btnClose_Click(object sender, EventArgs e) { CapaNegocio.notificaciones.Index obj = new CapaNegocio.notificaciones.Index(); bool result = obj.markAsRead(idnotificacion); //MessageBox.Show(perfil.ToString()); //MessageBox.Show(result.ToString()); timer1.Interval = 1; accion = enmAcciones.eliminar; }
private void btnVerPerfil_Click(object sender, EventArgs e) { CapaNegocio.notificaciones.Index obj = new CapaNegocio.notificaciones.Index(); bool result = obj.markAsRead(idnotificacion); if (result) { FrmRevisiones frm = new FrmRevisiones(perfil); frm.Show(); timer1.Interval = 1; accion = enmAcciones.eliminar; } //MessageBox.Show(perfil.ToString()); //MessageBox.Show(result.ToString()); }