public async Task <IActionResult> AttachBook(int id, [FromQuery] int bookId)
 {
     return(Json(await _authorService.AttachBook(id, bookId)));
 }