Exemplo n.º 1
0
        // GET: Beers/Beers/Create
        public IActionResult Create()
        {
            var model = new CreateBeerViewModel
            {
                Types = beers.GetAllBeerTypes().Select(t => t.Name).ToList()
            };

            return(View(model));
        }