private void rellenarCampos() { WebService webService = new WebService(); ApunteResponse response = webService.getApunte(this.idApunte); if (response.estado == 1) { Apunte apunte = response.apuntes.ElementAt(0); txtNombreApuntes.Text = apunte.nombre; cbTipoApuntes.Text = apunte.tipo; txtNombreAsignatura.Text = this.asignatura.nombre; txtEnlaceApuntes.Text = apunte.enlace; txtDescripcionAputnes.Text = apunte.descripcion; } }