public IActionResult AddBook([FromBody] BookVM book)
 {
     _bookService.AddBookWithAuthors(book);
     return(Ok());
 }