public ActionResult Create(FormCollection fc, CMS_TypeOfDocument obj) { try { if (ModelState.IsValid) { CMS_TypeOfDocument_DAO objDAO = new CMS_TypeOfDocument_DAO(); int ReturnID = objDAO.Insert(obj); if (ReturnID > 0) { SetAlert("Thêm loại văn bản thành công", AlertType.Success); return(RedirectToAction("Index", "CMS_TypeOfDocument")); } else { ModelState.AddModelError("", "Thêm loại văn bản không thành công"); } return(View("Index")); } return(View()); } catch (Exception ex) { SetAlert("Lỗi" + ex.Message.ToString(), AlertType.Error); Logs.WriteLog(ex); return(View()); } }
public ActionResult Edit(FormCollection fc, CMS_TypeOfDocument obj, HttpPostedFileBase file) { try { if (ModelState.IsValid) { CMS_TypeOfDocument_DAO objDAO = new CMS_TypeOfDocument_DAO(); if (objDAO.Update(obj)) { SetAlert("Cập nhật loại văn bản thành công", AlertType.Success); return(RedirectToAction("Index", "CMS_TypeOfDocument")); } else { SetAlert("Cập nhật loại văn bản không thành công", AlertType.Error); } } return(View(obj)); } catch (Exception ex) { SetAlert("Lỗi" + ex.Message.ToString(), AlertType.Error); Logs.WriteLog(ex); return(View()); } }
public bool Update(CMS_TypeOfDocument entity) { try { MyContext.Entry(entity).State = EntityState.Modified; MyContext.SaveChanges(); return(true); } catch (Exception ex) { Logs.WriteLog(ex); return(false); } }
public int Insert(CMS_TypeOfDocument entity) { try { MyContext.CMS_TypeOfDocument.Add(entity); MyContext.SaveChanges(); return(entity.ID); } catch (Exception ex) { Logs.WriteLog(ex); throw; } }