コード例 #1
0
ファイル: ObjectGroup.cs プロジェクト: dinhha/TheDeck
 public void BoatBooking(BoatBooking boat)
 {
     db.Insert(boat);
 }
コード例 #2
0
ファイル: ObjectController.cs プロジェクト: dinhha/TheDeck
 public JsonResult BoatBooking(BoatBooking boat)
 {
     try
     {
         sc.BoatBooking(boat);
         return Json(new { success = true, msg = "Book thành công" }, JsonRequestBehavior.AllowGet);
     }
     catch
     {
         return Json(new { success = false, msg = "Đã có lỗi xảy ra" }, JsonRequestBehavior.AllowGet);
     }
 }