Exemplo n.º 1
0
        public static Restaurants[] GetRestaurants()
        {
            Restaurants r1 = new Restaurants
            {
                Rank    = 1,
                Name    = "Kaden",
                Rest    = "Tucanos",
                Dish    = "Picaña",
                Phone   = "8012244774",
                Address = "545 E University Pkwy, Provo, UT 84097",
                Site    = "www.tucanos.com",
            };

            Restaurants r2 = new Restaurants
            {
                Rank    = 2,
                Name    = "Kaden",
                Rest    = "Texas Roadhouse",
                Dish    = "Chicken Critters",
                Phone   = "8012262742",
                Address = "1265 S State St, Provo, UT 84097-7033",
                Site    = "www.texasroadhouse.com",
            };

            Restaurants r3 = new Restaurants
            {
                Rank    = 3,
                Name    = "Kaden",
                Rest    = "Red Robin",
                Dish    = "Whiskey Burger",
                Phone   = "8018528093",
                Address = "1200 Towne Centre Blvd, Unit 1100, Provo, UT 84601,",
                Site    = "www.redrobin.com",
            };

            Restaurants r4 = new Restaurants
            {
                Rank    = 4,
                Name    = "Kaden",
                Rest    = "Brazas",
                Dish    = "Tacos Al Pastor",
                Phone   = "8013750240",
                Address = "238 W 100 S St, Provo, UT 84601, United States",
                Site    = "www.lasbrazasmexicangrill.com",
            };

            Restaurants r5 = new Restaurants
            {
                Rank    = 5,
                Name    = "Kaden",
                Rest    = "BumbleBees BBQ",
                Dish    = "Kpop Fries",
                Phone   = "8016072543",
                Address = "1254 N State St, Provo, UT 84604-6432",
                Site    = "www.bumblebeeskbbq.com",
            };

            return(new Restaurants[] { r1, r2, r3, r4, r5 });
        }
Exemplo n.º 2
0
 public IActionResult Form(Restaurants.Models.Restaurants model)
 {
     if (ModelState.IsValid)
     {
         TempStorage.Form(model);
         return(View("Confirmation", model));
     }
     else
     {
         return(View());
     }
 }
Exemplo n.º 3
0
 public static void Form(Restaurants eats)
 {
     Database.Add(eats);
 }