Exemplo n.º 1
0
 public ActionResult Create(Publisher publisher)
 {
     if (ModelState.IsValid)
     {
         var dao    = new PublisherDAO();
         int result = dao.Insert(publisher);
         if (result > 0)
         {
             return(RedirectToAction("Index", "Publisher"));
         }
         else
         {
             ModelState.AddModelError("", "Thêm Category không thành công");
         }
     }
     return(View("Index"));
 }
        public JsonResult Insert(Publisher model)
        {
            try
            {
                int status = dao.Insert(model);

                return(Json(new
                {
                    status = status
                }));
            }
            catch (Exception)
            {
                return(Json(new
                {
                    status = 0
                }));
            }
        }
Exemplo n.º 3
0
 public ActionResult Create(BookPublisher publisher)
 {
     if (ModelState.IsValid)
     {
         PublisherDAO dao     = new PublisherDAO();
         bool         success = dao.Insert(publisher);
         if (success)
         {
             SetAlert("Thêm nhà xuất bản thành công", "success");
             return(RedirectToAction("Index", "Publisher"));
         }
         else
         {
             SetAlert("Thêm nhà xuất bản thất bại", "warning");
             ModelState.AddModelError("", "Thêm nhà xuất bản không thành công");
         }
     }
     return(RedirectToAction("Index", "Publisher"));
 }