コード例 #1
0
        public ActionResult GetStatesByCountry(int id)
        {
            List <USPGetStatesResponse> myList = new List <USPGetStatesResponse>();

            myList = _categoryManagementService.GetStates(id);
            return(Json(new { res = myList }, JsonRequestBehavior.AllowGet));
        }