public ActionResult AjaxForm() { var cityModel = new System_City { IsShow = true }; if (DoAction == ActionType.Edit) { cityModel = _cityDa.GetById(ArrId.FirstOrDefault()); } ViewData.Model = cityModel; ViewBag.Action = DoAction; ViewBag.ActionText = ActionText; return(View()); }
public ResultEntity <CityEntity> GetById(int id) { var validationResult = new ResultEntity <CityEntity>(); using (var cityDA = new CityDA()) { validationResult.Value = cityDA.GetById(id); } return(validationResult); }
public ActionResult Update(string key, string code) { var msg = new JsonMessage(false, "Cập nhật dữ liệu thành công."); try { if (key != Keyapi) { return(Json(0, JsonRequestBehavior.AllowGet)); } var model = _da.GetById(ItemId); UpdateModel(model); _da.Save(); } catch (Exception ex) { msg.Erros = true; msg.Message = "Dữ liệu chưa được cập nhật."; } return(Json(msg, JsonRequestBehavior.AllowGet)); }