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