/// <summary>
        /// Method that saves the HuntQuestion data associated with the new question into the database.
        /// </summary>
        /// <param name="questionId"></param>
        private async void SaveHuntQuestion(long questionId)
        {
            huntquestion newHuntQuestion = new huntquestion();

            newHuntQuestion.QuestionId = questionId;
            newHuntQuestion.HuntId     = currentTreasureHunt.HuntId;
            await serviceClient.SaveNewHuntQuestionAsync(newHuntQuestion);

            RefreshQuestions();
            this.NewQuestion = String.Empty;
        }