public IActionResult AddAuthorToBook(int bookId, int authorId) { _library.AddAuthorToBook(bookId, authorId); return(Ok("Added author to book")); }