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());
        }
Exemple #2
0
        public ResultEntity <CityEntity> GetById(int id)
        {
            var validationResult = new ResultEntity <CityEntity>();

            using (var cityDA = new CityDA())
            {
                validationResult.Value = cityDA.GetById(id);
            }

            return(validationResult);
        }
Exemple #3
0
        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));
        }