Beispiel #1
0
        public void TestMethod1()
        {
            var client = new ProductClient();

            client.AddAsync(new Product {
                Name = "Product #12", Price = 1.23m, Count = 8
            }).Wait();

            var products = client.GetAllAsync().Result;
        }