Ejemplo n.º 1
0
        /// <summary>
        /// Called when a user selects a activity for a challenge in the GUI.
        /// Loads the description of the acitivty for a challenge in the GUI
        /// </summary>
        /// <param name="activityName"></param>
        public void ActivityForChallengePressed(string activityName)
        {
            currentActivityHover = activityName;
            String description = connectToDatabase.GetActivityDescriptionQuery(activityName);

            view.UpdateActivityForChallengeInfo(description);
        }