Beispiel #1
0
 public PartialViewResult LienHe(string title, string category, CMS_Contact obj, FormCollection fc)
 {
     try
     {
         ViewBag.abc  = title;
         ViewBag.CATE = category;
         if (ModelState.IsValid)
         {
             CMS_Contact_DAO objDAO = new CMS_Contact_DAO();
             obj.Title = fc["xTitle"].ToString();
             int ReturnID = objDAO.Insert(obj);
             if (ReturnID > 0)
             {
                 SetAlert("Gửi thông tin liên hệ thành công", AlertType.Success);
             }
         }
         CMS_Contact n = new CMS_Contact();
         return(PartialView(null));
     }
     catch (Exception ex)
     {
         Logs.WriteLog(ex);
         return(PartialView());
     }
 }
 public ActionResult Create(FormCollection fc, CMS_Contact obj)
 {
     try
     {
         if (ModelState.IsValid)
         {
             CMS_Contact_DAO objDAO   = new CMS_Contact_DAO();
             int             ReturnID = objDAO.Insert(obj);
             if (ReturnID > 0)
             {
                 SetAlert("Thêm thông tin liên hệ thành công", AlertType.Success);
                 return(RedirectToAction("Index", "CMS_Contact"));
             }
             else
             {
                 ModelState.AddModelError("", "Thêm thông tin liên hệ 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_Contact obj, HttpPostedFileBase file)
 {
     try
     {
         if (ModelState.IsValid)
         {
             CMS_Contact_DAO objDAO = new CMS_Contact_DAO();
             if (objDAO.Update(obj))
             {
                 SetAlert("Cập nhật thông tin liên hệ thành công", AlertType.Success);
                 return(RedirectToAction("Index", "CMS_Contact"));
             }
             else
             {
                 SetAlert("Cập nhật thông tin liên hệ 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());
     }
 }
Beispiel #4
0
 public int Insert(CMS_Contact entity)
 {
     try
     {
         entity.CreateDate = System.DateTime.Now;
         MyContext.CMS_Contact.Add(entity);
         MyContext.SaveChanges();
         return(entity.ID);
     }
     catch (Exception ex)
     {
         Logs.WriteLog(ex);
         throw;
     }
 }
Beispiel #5
0
 public bool Update(CMS_Contact entity)
 {
     try
     {
         CMS_Contact obj = MyContext.CMS_Contact.Find(entity.ID);
         obj.Name     = entity.Name;
         obj.Address  = entity.Address;
         obj.Title    = entity.Title;
         obj.Mobile   = entity.Mobile;
         obj.Email    = entity.Email;
         obj.Contents = entity.Contents;
         obj.Address  = entity.Address;
         MyContext.SaveChanges();
         return(true);
     }
     catch (Exception ex)
     {
         Logs.WriteLog(ex);
         return(false);
     }
 }