public ActionResult Edit(CountryType obj)
 {
     bool isOk = Update<CountryType>(obj);
     return Json(new { IsSuccess = isOk });
 }
 public JsonResult Create(CountryType obj)
 {
     bool isOk = Save(obj);
     return Json(new { IsSuccess = isOk });
 }