Fetching Books by Author Name and by Author Id from Db

This commit is contained in:
Kira 2022-09-28 14:17:01 -07:00
parent 1dce61d99c
commit b9d6c46e99
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ namespace HomeLibrary.Api.Controllers
}
}
[HttpGet("GetBooksByAuthor")]
[HttpGet("GetBooksByAuthorId")]
public async Task<ActionResult<IEnumerable<BookDto>>> GetBooksByAuthor(int authorId)
{
try