Example #1
0
        /// <summary>
        /// 获得所有车场
        /// </summary>
        /// <returns></returns>
        public JsonResult GetAllParks()
        {
            JsonResult json = new JsonResult();

            try
            {
                json.Data = ParkingServices.QueryAllParking();
            }
            catch (Exception ex)
            { }
            return(json);
        }