コード例 #1
0
 public JsonResult Update(string BookId)
 {
     try
     {
         Models.BookServices bookService = new Models.BookServices();
         bookService.GetBookUpdateByCondtioin(BookId);
         var result = bookService.GetBookUpdateByCondtioin(BookId);
         return(Json(result, JsonRequestBehavior.AllowGet));
     }
     catch (Exception ex)
     {
         return(this.Json(false));
     }
 }