/// <summary>
        /// 查询小区价格趋势
        /// </summary>
        /// <returns>小区价格趋势,总页数</returns>
        public IEnumerable<object> Get()
        {
            int totalPage = 0;
            List<NeighborhoodPriceTrend> result = new List<NeighborhoodPriceTrend>();

            var queryString = Request.GetQueryNameValuePairs();
            var queryConditions = new NeighborhoodPriceTrendQueryConditions();
            queryConditions.GetValues(queryString);

            NeighborhoodPriceTrendFunction neighborhoodPriceTrendFunction = new NeighborhoodPriceTrendFunction();
            neighborhoodPriceTrendFunction.QueryNeighborhoodPriceTrend(queryConditions, out result, out totalPage);

            List<object> objectResult = new List<object>() { result, new { totalPage = totalPage } };
            return objectResult;
        }