Пример #1
0
 public JsonResult AddMartini(MartiniClub martini)
 {
     try
     {
         sc.AddMartini(martini);
         return Json(new { success = true, msg = "Đăng ký thành công" }, JsonRequestBehavior.AllowGet);
     }
     catch
     {
         return Json(new { success = false, msg = "Đã có lỗi xảy ra" }, JsonRequestBehavior.AllowGet);
     }
 }
Пример #2
0
 public void AddMartini(MartiniClub martini)
 {
     db.Insert(martini);
 }