Пример #1
0
        public ActionResult Edit(CountryType obj)
        {

            base.Update<CountryType>(obj);
            return Json(new { IsSuccess = true });

        }
Пример #2
0
 public JsonResult Create(CountryType obj)
 {
     base.Save<CountryType>(obj);
     return Json(new { IsSuccess = true });
 }