コード例 #1
0
ファイル: SachController.cs プロジェクト: kienp2901/BookShop
 public ActionResult Create(Sach collection)
 {
     try
     {
         if (ModelState.IsValid)
         {
             // TODO: Add insert logic here
             var  dao = new SachDao();
             long id  = dao.Insert(collection);
             if (id > 0)
             {
                 SetAlert("Thêm thành công", "success");
                 return(RedirectToAction("Index", "Sach"));
             }
             else
             {
                 ModelState.AddModelError("", "Thêm sản phẩm không thành công");
             }
         }
         return(View(collection));
     }
     catch
     {
         return(View("Index"));
     }
 }
コード例 #2
0
 public ActionResult Create(Sach sach)
 {
     SetViewBagChuDe();
     SetViewBagNXB();
     if (ModelState.IsValid)
     {
         var  dao = new SachDao();
         bool kt  = dao.Insert(sach);
         if (kt)
         {
             return(RedirectToAction("Index", "Sach"));
         }
         else
         {
             ModelState.AddModelError("", "Thông tin có đánh dấu * bắt buộc phải nhập");
         }
     }
     return(View());
 }
コード例 #3
0
 public int Insert(Sach obj)
 {
     return(dao.Insert(obj));
 }