Ejemplo n.º 1
0
        public IActionResult Create()
        {
            var model = new BookEditViewModel();

            model.GenreList    = _bookDataService.GetAllGenres();
            model.AuthorList   = _bookDataService.GetAuthors();
            model.LocationList = _bookDataService.GetLocations();

            return(View(model));
        }