Beispiel #1
0
        // Methods
        public bool AddQuestion(int auteur, string location, string content)
        {
            Question newQuestion = new Question(CurrentUser, auteur, location, content, DateTime.Now);

            if (questionhandler.AddQuestion(newQuestion))
            {
                return(true);
            }
            return(false);
        }