/// only return json to client
        public ActionResult Create(TinhThanhEntity tinhthanh)
        {
            TinhThanhService service = new TinhThanhService();

            if (tinhthanh == null)
            {
                RenderResult.RequestError(ViewData, "Lỗi đối số không hợp lệ");
                return Json(JsonConvert.SerializeObject(ViewData));
            }

            if (service.Create(tinhthanh))
            {
                return Json(RenderResult.RequestCompleted(ViewData, "Thêm tỉnh thành thành công"));
            }
            else
            {

                return Json(RenderResult.RequestCompleted(ViewData, "Lỗi khi thêm tỉnh thành"));
            }
        }