// GET: api/Books public IHttpActionResult GetBook() { var list = bookService.BookAll(); return(Ok(list)); }