示例#1
0
        public static async Task AddProduct(ProductInfoClient client)
        {
            var result = await client.AddProductAsync(new Product(), deadline : DateTime.UtcNow.AddSeconds(11));

            Console.WriteLine("########### RESULT ###########");
            Console.WriteLine($"productId: {result.Value}");
        }