/// <summary>
        /// Get the <paramref name="question"/>, <paramref name="answerOne"/>, <paramref name="answerTwo"/>,
        /// <paramref name="answerThree"/>, <paramref name="answerFour"/> and the <paramref name="questionChoice"/>,
        /// make objects out of it and add them to the database
        /// </summary>
        /// <param name="question">The label of the question</param>
        /// <param name="answerOne">The label of the first question</param>
        /// <param name="answerTwo">The label of the second question</param>
        /// <param name="answerThree">The label of the third question</param>
        /// <param name="answerFour">The label of the fourth question</param>
        /// <param name="questionChoice">The type of strawpoll (simple or multiple answers allowed)</param>
        /// <returns>View URLGeneration.cshtml</returns>
        public ActionResult CreateStrawPoll(String question, String answerOne, String answerTwo, String answerThree, String answerFour, String questionChoice)
        {
            bool multipleChoices;

            if (questionChoice == "uniqueChoice")
            {
                multipleChoices = false;
            }
            else
            {
                multipleChoices = true;
            }

            //Create question
            Models.StrawPoll myStrawPoll = new Models.StrawPoll(question, multipleChoices, 0, false);

            //Create answers
            Models.Answer myAnswerOne   = new Models.Answer(answerOne, 0);
            Models.Answer myAnswerTwo   = new Models.Answer(answerTwo, 0);
            Models.Answer myAnswerThree = new Models.Answer(answerThree, 0);
            Models.Answer myAnswerFour  = new Models.Answer(answerFour, 0);

            //Send StrawPoll in database
            int IDStrawPoll = addStrawPollInDataBase(myStrawPoll);

            //Send URL in database
            sendURLsInDataBase(myStrawPoll, IDStrawPoll);

            //Send Answers in database and assign them to the corresponding strawpoll
            sendAnswerInDatabase(myAnswerOne, IDStrawPoll);
            sendAnswerInDatabase(myAnswerTwo, IDStrawPoll);
            sendAnswerInDatabase(myAnswerThree, IDStrawPoll);
            sendAnswerInDatabase(myAnswerFour, IDStrawPoll);

            ViewBag.URLStrawPoll = myStrawPoll.getURLStrawPoll();
            ViewBag.URLDeletion  = myStrawPoll.getURLDeletion();
            ViewBag.URLResult    = myStrawPoll.getURLResults();

            //return URL page
            return(View("URLGeneration"));
        }