コード例 #1
0
        public void GetGroupBuyingProduct()
        {
            var result = _client.GetGroupBuyingProductList(1, 10, false, "WXAPP", true);

            result.ThrowIfException();
            Assert.IsNull(result.Exception);
            Assert.IsNotNull(result.Result);
            var result2 = _client.SelectProductGroupInfo(result.Result.ToList());

            result2.ThrowIfException();
            Assert.IsNull(result2.Exception);
            Assert.IsNotNull(result2.Result);
        }