public async Task <IActionResult> GetAuthorBooks(int id) =>
 (await _authorService.BooksByAuthorId(id))
 .Match(Ok, Error);