Ejemplo n.º 1
0
 public HttpResponseMessage UpdateBook([FromBody]Book book)
 {
     plibrarydbEntities db = new plibrarydbEntities();
     db.UpdateBook(book.book_id, book.userid, book.title, book.genre, book.publication_year, book.authors, book.book_status, book.cover);
     return new HttpResponseMessage(HttpStatusCode.OK);
 }