Exemplo n.º 1
0
        public IActionResult Authors(string strategy = "fullName")
        {
            List <Author> authors = authorServices.GetAllAuthors();

            List <AuthorView> result = authorServices.GetAuthorList(authors);

            result = OrderByStrategy(result, strategy);

            return(View(result));
        }