Ejemplo n.º 1
0
        public ActionResult GetCity(int provinceId)
        {
            AreaBLL   areaBLL = new AreaBLL();
            JsonArray result  = areaBLL.GetCityByProvId(provinceId);

            return(Json(new { success = true, data = result }));
        }