private void rellenarCampos() { WebService webService = new WebService(); AlumnoResponse response = webService.getAlumno(this.idAlumno); if (response.estado == 1) { Alumno alumno = response.alumnos.ElementAt(0); txtNombrePerfilAlumno.Text = alumno.nombre; txtApellidosPerfilAlumno.Text = alumno.apellidos; txtDireccionPerfilAlumno.Text = alumno.direccion; txtTelefonoPerfilAlumno.Text = alumno.telefono; txtEmailPerfilAlumno.Text = alumno.email; } else { Utils.msgBox(response.mensaje, "ok", "error"); } }