コード例 #1
0
 public JsonResult Update(Models.BookSearchArg Book)
 {
     try
     {
         Models.BookServices bookService = new Models.BookServices();
         bookService.UpdateBookById(Book);
         return(this.Json(true));
     }
     catch (Exception ex)
     {
         return(this.Json(false));
     }
 }