Beispiel #1
0
        public void TestCpRecommends()
        {
            var recommend = new ActivityPageInfoModuleRecommendRequest()
            {
                Channel        = "wap",
                HashKey        = "0C96F72A",
                VehicleId      = "VE-AUDF99AB",
                Width          = "205",
                AspectRatio    = "55",
                Rim            = "16",
                CityId         = "1",
                Tid            = "102429",
                RecommendCount = 5
            };
            var result = _client.GetActivityPageInfoCpRecommends(recommend);

            result.ThrowIfException(true);
            Assert.IsNotNull(result.Result);
        }
 public async Task <OperationResult <List <ActivityPageInfoRecommend> > > GetActivityPageInfoTireRecommendsAsync(ActivityPageInfoModuleRecommendRequest request)
 {
     return(OperationResult.FromResult(await new ActivityPageInfoManager().GetActivityPageInfoTireRecommendsAsync(request)));
 }