コード例 #1
0
 public JsonResult CreateBook(Book book)
 {
     _bookService.CreateBook(book);
     return(Json(true, JsonRequestBehavior.DenyGet));
 }