public string requestWelcomeMessage(string usernameValue)
        {
            Views.ShowPersonalInformation importShowPersonalInformation = new Views.ShowPersonalInformation();

            string output = "";

            output += importShowPersonalInformation.showWelcomeMessage(this.searchDisplayName(usernameValue));

            return output;
        }
        public string requestMySecurityQuestions(string usernameValue, string selectSecurityQuestion, string deleteSelected)
        {
            Views.ShowPersonalInformation importShowPersonalInformation = new Views.ShowPersonalInformation();

            string output = "";

            output += importShowPersonalInformation.showSecurityQuestions(this.mySecurityQuestions(usernameValue, selectSecurityQuestion, deleteSelected));

            return output;
        }