Exemple #1
0
        public IActionResult GetAuthorWithBooks(int id)
        {
            var response = _authorsService.GetAuthorWithBooks(id);

            return(Ok(response));
        }
Exemple #2
0
        public IActionResult GetAuthorWithBooks(int id)
        {
            var author = _authorsService.GetAuthorWithBooks(id);

            return(Ok(author));
        }