public IHttpActionResult Create(Book book) { _bookService.Create(book); return(CreatedAtRoute("GetBook", new { id = book.Id.ToString() }, book)); }