Exemple #1
0
        public ActionResult Index(string adj1, string adj2, string noun1, string noun2, string pluralNoun1, string game1, string pluralNoun2, string verbIng1, string verbIng2, string pluralNoun3, string verbIng3, string noun3, string plant1, string body1, string place1, string verbIng4, string adj3, string number, string pluralNoun4)
        {
            MadLibsVariable myMadLibs = new MadLibsVariable();

            myMadLibs.Adj1        = adj1;
            myMadLibs.Adj2        = adj2;
            myMadLibs.Noun1       = noun1;
            myMadLibs.Noun2       = noun2;
            myMadLibs.PluralNoun1 = pluralNoun1;
            myMadLibs.Game1       = game1;
            myMadLibs.PluralNoun2 = pluralNoun2;
            myMadLibs.VerbIng1    = verbIng1;
            myMadLibs.VerbIng2    = verbIng2;
            myMadLibs.PluralNoun3 = pluralNoun3;
            myMadLibs.VerbIng3    = verbIng3;
            myMadLibs.Noun3       = noun3;
            myMadLibs.Plant1      = plant1;
            myMadLibs.Body1       = body1;
            myMadLibs.Place1      = place1;
            myMadLibs.VerbIng4    = verbIng4;
            myMadLibs.Adj3        = adj3;
            myMadLibs.Number      = number;
            myMadLibs.PluralNoun4 = pluralNoun4;
            return(View(myMadLibs));
        }
Exemple #2
0
        public ActionResult Story(string holiday, string noun1,
                                  string place1, string person1, string adj1, string bodypart,
                                  string verb1, string adj2, string noun2, string food,
                                  string plNoun, string famPers, string noun3, string food2,
                                  string food3, string number, string verb2, string familyMem,
                                  string food4, string bodypart2)
        {
            MadLibsVariable myMadLibsVariable = new MadLibsVariable();

            myMadLibsVariable.holiday   = holiday;
            myMadLibsVariable.noun1     = noun1;
            myMadLibsVariable.place1    = place1;
            myMadLibsVariable.person1   = person1;
            myMadLibsVariable.adj1      = adj1;
            myMadLibsVariable.bodypart  = bodypart;
            myMadLibsVariable.verb1     = verb1;
            myMadLibsVariable.adj2      = adj2;
            myMadLibsVariable.noun2     = noun2;
            myMadLibsVariable.food      = food;
            myMadLibsVariable.plNoun    = plNoun;
            myMadLibsVariable.famPers   = famPers;
            myMadLibsVariable.noun3     = noun3;
            myMadLibsVariable.food2     = food2;
            myMadLibsVariable.food3     = food3;
            myMadLibsVariable.number    = number;
            myMadLibsVariable.verb2     = verb2;
            myMadLibsVariable.familyMem = familyMem;
            myMadLibsVariable.food4     = food4;
            myMadLibsVariable.bodypart2 = bodypart2;

            return(View(myMadLibsVariable));
        }
        public ActionResult MadLib(string noun, string verb)
        {
            MadLibsVariable myMadLibsVariable = new MadLibsVariable();

            myMadLibsVariable.Verb = verb;
            myMadLibsVariable.Noun = noun;
            return(View(myMadLibsVariable));
        }
        public ActionResult MadLib()
        {
            MadLibsVariable myMadLibsVariable = new MadLibsVariable();

            myMadLibsVariable.Noun = "Lina";
            myMadLibsVariable.Verb = "Walk";
            return(View(myMadLibsVariable));
        }
        public ActionResult Story(string name, string noun, string adjective, string verb)
        {
            MadLibsVariable myMadLibsVariable = new MadLibsVariable();

            myMadLibsVariable.Name      = name;
            myMadLibsVariable.Noun      = noun;
            myMadLibsVariable.Adjective = adjective;
            myMadLibsVariable.Verb      = verb;
            return(View(myMadLibsVariable));
        }
        public ActionResult Tale()
        {
            MadLibsVariable myMadLibsVariable = new MadLibsVariable();

            myMadLibsVariable.Name      = "Lina";
            myMadLibsVariable.Noun      = "horse";
            myMadLibsVariable.Adjective = "very";
            myMadLibsVariable.Verb      = "run";
            return(View(myMadLibsVariable));
        }
Exemple #7
0
        public ActionResult Arcade(string pluralnoun, string noun, string ingverb, string verb)
        {
            MadLibsVariable myMadLibsVariable1 = new MadLibsVariable();

            myMadLibsVariable1.PluralNoun = pluralnoun;
            myMadLibsVariable1.Noun       = noun;
            myMadLibsVariable1.Verb       = verb;
            myMadLibsVariable1.IngVerb    = ingverb;

            return(View(myMadLibsVariable1));
        }
Exemple #8
0
        public ActionResult MadLibsStory()
        {
            MadLibsVariable myMadLibs = new MadLibsVariable();

            myMadLibs.SetPerson1(Request.Query["person1"]);
            myMadLibs.SetPerson2(Request.Query["person2"]);
            myMadLibs.SetAnimal(Request.Query["animal"]);
            myMadLibs.SetExclaimation(Request.Query["exclaimation"]);
            myMadLibs.SetVerb(Request.Query["verb"]);
            myMadLibs.SetNoun(Request.Query["noun"]);
            return(View("MadLibs", myMadLibs));
        }
Exemple #9
0
        public ActionResult StorCelebs(string celebrity1, string celebrity2, string celebrity3, string noun1, string noun2, string verb)
        {
            MadLibsVariable myMadLibsVariable = new MadLibsVariable();

            myMadLibsVariable.Celebrity1 = celebrity1;
            myMadLibsVariable.Celebrity2 = celebrity2;
            myMadLibsVariable.Celebrity3 = celebrity3;
            myMadLibsVariable.Verb1      = verb;
            myMadLibsVariable.Noun1      = noun1;
            myMadLibsVariable.Noun2      = noun2;
            return(View(myMadLibsVariable));
        }
Exemple #10
0
        public ActionResult Story2(string person1, string person2, string animal, string excercise, string exclamation, string verb, string noun)
        {
            MadLibsVariable newMadLibsVariable = new MadLibsVariable();

            newMadLibsVariable.Person1     = person1;
            newMadLibsVariable.Person2     = person2;
            newMadLibsVariable.Animal      = animal;
            newMadLibsVariable.Excercise   = excercise;
            newMadLibsVariable.Verb        = verb;
            newMadLibsVariable.Noun        = noun;
            newMadLibsVariable.Exclamation = exclamation;
            return(View(newMadLibsVariable));
        }
        public ActionResult MadLibs(string person1, string person2, string animal, string exclamation, string verb, string noun)
        {
            MadLibsVariable myMadLibsVariable = new MadLibsVariable();

            myMadLibsVariable.SetPerson1(person1);
            myMadLibsVariable.SetPerson2(person2);
            myMadLibsVariable.SetAnimal(animal);
            myMadLibsVariable.SetExclamation(exclamation);
            myMadLibsVariable.SetVerb(verb);
            myMadLibsVariable.SetNoun(noun);

            return(View(myMadLibsVariable));
        }
Exemple #12
0
        public ActionResult Mad(string noun, string pluralNoun, string verb, string verbTwo, string adjective, string adjectiveTwo, string pluralNounTwo, string adjectiveThree)
        {
            MadLibsVariable myMadLibs = new MadLibsVariable();

            myMadLibs.Noun           = noun;
            myMadLibs.PluralNoun     = pluralNoun;
            myMadLibs.Verb           = verb;
            myMadLibs.VerbTwo        = verbTwo;
            myMadLibs.Adjective      = adjective;
            myMadLibs.AdjectiveTwo   = adjectiveTwo;
            myMadLibs.PluralNounTwo  = pluralNounTwo;
            myMadLibs.AdjectiveThree = adjectiveThree;
            return(View(myMadLibs));
        }
Exemple #13
0
        public ActionResult FunPark(string adjective, string pluralnoun, string noun, string adverb, string number, string pasttenseverb, string estadjective)
        {
            MadLibsVariable myMadLibsVariable = new MadLibsVariable();

            myMadLibsVariable.Adjective     = adjective;
            myMadLibsVariable.PluralNoun    = pluralnoun;
            myMadLibsVariable.Noun          = noun;
            myMadLibsVariable.Adverb        = adverb;
            myMadLibsVariable.Number        = number;
            myMadLibsVariable.PastTenseVerb = pasttenseverb;
            myMadLibsVariable.EstAdjective  = estadjective;

            return(View(myMadLibsVariable));
        }
        public ActionResult MadLibs(string person1, string person2, string animal, string exclamation, string adverb, string verb, string adjective, string noun)
        {
            MadLibsVariable myMadLibsVariable = new MadLibsVariable();

            myMadLibsVariable.Person1     = person1;
            myMadLibsVariable.Person2     = person2;
            myMadLibsVariable.Animal      = animal;
            myMadLibsVariable.Exclamation = exclamation;
            myMadLibsVariable.Adverb      = adverb;
            myMadLibsVariable.Verb        = verb;
            myMadLibsVariable.Adjective   = adjective;
            myMadLibsVariable.Noun        = noun;

            return(View(myMadLibsVariable));
        }
        public ActionResult MadLibs(string name, string sillyword, string lastname, string illness, string nounplural, string adjective, string adjective2, string sillyword2, string place, string number, string adjective3)
        {
            MadLibsVariable madLibs = new MadLibsVariable();

            madLibs.SetName(name);
            madLibs.SetSillyWord(sillyword);
            madLibs.SetLastName(lastname);
            madLibs.SetIllness(illness);
            madLibs.SetNounPlural(nounplural);
            madLibs.SetAdjective(adjective);
            madLibs.SetAdjective2(adjective2);
            madLibs.SetSillyWord2(sillyword2);
            madLibs.SetPlace(place);
            madLibs.SetNumber(number);
            madLibs.SetAdjective3(adjective3);
            return(View(madLibs));
        }
        public ActionResult SickNote(string word1, string word2, string word3, string word4, string word5, string word6, string word7, string word8, string word9, string word10)
        {
            MadLibsVariable madlibs = new MadLibsVariable();

            madlibs.word1  = word1;
            madlibs.word2  = word2;
            madlibs.word3  = word3;
            madlibs.word4  = word4;
            madlibs.word5  = word5;
            madlibs.word6  = word6;
            madlibs.word7  = word7;
            madlibs.word8  = word8;
            madlibs.word9  = word9;
            madlibs.word10 = word10;

            return(View(madlibs));
        }
        public ActionResult Madlib(string adjective1, string adjective2, string adjective3, string adjective4, string adjective5, string verb1, string verb2, string noun1, string noun2, string noun3, string noun4)
        {
            MadLibsVariable myLibs = new MadLibsVariable();

            myLibs.Adjective1 = adjective1.ToLower();
            myLibs.Adjective2 = adjective2.ToLower();
            myLibs.Adjective3 = adjective3.ToLower();
            myLibs.Adjective4 = adjective4.ToLower();
            myLibs.Adjective5 = adjective5.ToLower();
            myLibs.Verb1      = verb1;
            myLibs.Verb2      = verb2;
            myLibs.Noun1      = noun1;
            myLibs.Noun2      = noun2;
            myLibs.Noun3      = noun3;
            myLibs.Noun4      = noun4;
            return(View(myLibs));
        }
        public ActionResult Sheet(string adjective1, string noun1, string verb1, string adverb1, string adjective2, string noun2, string noun3, string adjective3, string verb2, string adverb2, string verb3, string adjective4)
        {
            MadLibsVariable myMadLibsVariable = new MadLibsVariable();

            myMadLibsVariable.SetAdjective(adjective1);
            myMadLibsVariable.SetAdverb(adverb1);
            myMadLibsVariable.SetNoun(noun1);
            myMadLibsVariable.SetVerb(verb1);
            myMadLibsVariable.SetAdjective(adjective2);
            myMadLibsVariable.SetAdjective(adjective3);
            myMadLibsVariable.SetAdjective(adjective4);
            myMadLibsVariable.SetVerb(verb2);
            myMadLibsVariable.SetVerb(verb3);
            myMadLibsVariable.SetAdverb(adverb2);
            myMadLibsVariable.SetNoun(noun2);
            myMadLibsVariable.SetNoun(noun3);
            return(View(myMadLibsVariable));
        }
Exemple #19
0
        public ActionResult StoryOptions(string noun, string verb, string adverb, string adjective, string noun2, string noun3, string adjective2, string verb2, string adverb2, string verb3, string adjective3, string exclamation)
        {
            MadLibsVariable myMadLibsVariable = new MadLibsVariable();

            myMadLibsVariable.Noun        = noun;
            myMadLibsVariable.Verb        = verb;
            myMadLibsVariable.Adverb      = adverb;
            myMadLibsVariable.Adjective   = adjective;
            myMadLibsVariable.Noun2       = noun2;
            myMadLibsVariable.Noun3       = noun3;
            myMadLibsVariable.Adjective2  = adjective2;
            myMadLibsVariable.Verb2       = verb2;
            myMadLibsVariable.Adverb2     = adverb2;
            myMadLibsVariable.Verb3       = verb3;
            myMadLibsVariable.Adjective3  = adjective3;
            myMadLibsVariable.Exclamation = exclamation;

            return(View(myMadLibsVariable));
        }
        public ActionResult World(string name, string number, string vehicle, string adjective1, string adjective2, string verb1, string animal, string adjective3, string verb2, string adjective4, string verb3, string verb4, string place, string verb5)
        {
            MadLibsVariable myMadLibsVariable = new MadLibsVariable();

            myMadLibsVariable.SetAdjective(adjective1);
            myMadLibsVariable.SetVerb(verb1);
            myMadLibsVariable.SetName(name);
            myMadLibsVariable.SetVerb(verb2);
            myMadLibsVariable.SetAdjective(adjective2);
            myMadLibsVariable.SetAdjective(adjective3);
            myMadLibsVariable.SetAdjective(adjective4);
            myMadLibsVariable.SetVerb(verb3);
            myMadLibsVariable.SetVerb(verb4);
            myMadLibsVariable.SetVerb(verb5);
            myMadLibsVariable.SetNumber(number);
            myMadLibsVariable.SetVehicle(vehicle);
            myMadLibsVariable.SetAnimal(animal);
            myMadLibsVariable.SetPlace(place);
            return(View(myMadLibsVariable));
        }
        public ActionResult Walmart(string word1, string word2, string word3, string word4, string word5, string word6, string word7, string word8, string word9, string word10, string word11, string word12, string word13, string word14, string word15)
        {
            MadLibsVariable madlibs = new MadLibsVariable();

            madlibs.word1  = word1;
            madlibs.word2  = word2;
            madlibs.word3  = word3;
            madlibs.word4  = word4;
            madlibs.word5  = word5;
            madlibs.word6  = word6;
            madlibs.word7  = word7;
            madlibs.word8  = word8;
            madlibs.word9  = word9;
            madlibs.word10 = word10;
            madlibs.word11 = word11;
            madlibs.word12 = word12;
            madlibs.word13 = word13;
            madlibs.word14 = word14;
            madlibs.word15 = word15;

            return(View(madlibs));
        }
        public ActionResult MadLibs(string pluralNoun1, string pluralNoun2, string pluralNoun3, string celebrity, string articleOfClothing1, string articleOfClothing2, string adjective1, string adjective2, string adjective3, string verb1, string verb2, string typeOfLiquid1, string typeOfLiquid2, string noun1, string noun2, string noun3)
        {
            MadLibsVariable myMadLibsVariable = new MadLibsVariable();

            myMadLibsVariable.PluralNoun1        = pluralNoun1;
            myMadLibsVariable.PluralNoun2        = pluralNoun2;
            myMadLibsVariable.PluralNoun3        = pluralNoun3;
            myMadLibsVariable.Celebrity          = celebrity;
            myMadLibsVariable.ArticleOfClothing1 = articleOfClothing1;
            myMadLibsVariable.ArticleOfClothing2 = articleOfClothing2;
            myMadLibsVariable.Adjective1         = adjective1;
            myMadLibsVariable.Adjective2         = adjective2;
            myMadLibsVariable.Adjective3         = adjective3;
            myMadLibsVariable.Verb1         = verb1;
            myMadLibsVariable.Verb2         = verb2;
            myMadLibsVariable.TypeOfLiquid1 = typeOfLiquid1;
            myMadLibsVariable.TypeOfLiquid2 = typeOfLiquid2;
            myMadLibsVariable.Noun1         = noun1;
            myMadLibsVariable.Noun2         = noun2;
            myMadLibsVariable.Noun3         = noun3;
            return(View(myMadLibsVariable));
        }
        public ActionResult Result(string adj1, string food1, string vegetable1, string food2, string vegetable2, string verb1, string verb2, string vegetable3, string vegetable4, string verb3)
        {
            MadLibsVariable newMadLibs = new MadLibsVariable(adj1, food1, vegetable1, food2, vegetable2, verb1, verb2, vegetable3, vegetable4, verb3);

            return(View(newMadLibs));
        }