public ActionResult Index()
        {
            // TODO Get the comic books list.
            // Include the "Series" navigation property.
            // we copied the query from repository and add it here using the  new context
            var comicBooks = _comicBookRepository.GetList();

            return(View(comicBooks));
        }
Ejemplo n.º 2
0
        public ActionResult Index()
        {
            var comicBooks = _comicBooksRepository.GetList();

            return(View(comicBooks));
        }