Exemplo n.º 1
0
        static async Task Main(string[] args)
        {
            var http = new HttpClient();

            var client   = new swaggerClient("https://localhost:5001", http);
            var contacts = await client.ContactAllAsync();

            foreach (var c in contacts)
            {
                Console.WriteLine($"{c.FirstName} {c.LastName}");
            }
        }