Пример #1
0
        public IActionResult Index()
        {
            List <Book> books = _repo.GetAll().ToList();

            return(View(books));
        }
        public IActionResult Index()
        {
            List <Author> authors = _repo.GetAll().ToList();

            return(View(authors));
        }