public IActionResult FindAllRecipesForAuthor(string authorId) { try { return(Ok(_authorService.FindAllRecipes(authorId))); } catch (AuthorNotFoundException anfe) { return(NotFound(anfe.Message)); } }