public ActionResult Update(string key, Guid userId) { var msg = new JsonMessage(false, "Thêm mới dữ liệu thành công."); try { if (key == Keyapi) { var model = _da.GetbyId(ItemId); UpdateModel(model); var date = DateTime.Now.TotalSeconds(); model.UserID = userId; model.DateUpdate = date; _da.Save(); } else { msg = new JsonMessage(true, "Có lỗi xảy ra!."); } } catch (Exception ex) { msg.Erros = true; msg.Message = "Dữ liệu chưa được thêm mới."; Log2File.LogExceptionToFile(ex); } return(Json(msg, JsonRequestBehavior.AllowGet)); }