Exemplo n.º 1
0
        /// <summary>
        ///获取车场信息
        /// </summary>
        /// <param name="accountId"></param>
        /// <returns></returns>
        public static BaseParkinfo GetBaseParkinfoByPKID(string ParkingID)
        {
            WXServiceClient client = ServiceUtil <WXServiceClient> .GetServiceClient("WXService");

            string result = client.GetBaseParkinfoByPKID(ParkingID);

            client.Close();
            client.Abort();
            return(JsonHelper.GetJson <BaseParkinfo>(result));
        }