Пример #1
0
        private void rellenarCampos()
        {
            WebService    webService = new WebService();
            TareaResponse response   = webService.getTarea(this.idTarea);

            if (response.estado == 1)
            {
                Tarea tarea = response.tareas.ElementAt(0);
                txtNombreTarea1.Text          = tarea.nombre;
                cbTipoTarea.Text              = tarea.tipo;
                txtNombreAsignaturaTarea.Text = this.asignatura.nombre;
                txtValoracionTarea.Text       = tarea.valoracion;
            }
        }