static void Main()
        {
            var addressFinder = new AddressFinder();

            addressFinder.FindAddress();
            Console.ReadLine();
        }
Esempio n. 2
0
        static void Main()
        {
            var addressFinder = new AddressFinder();

            var findAddressResponse = addressFinder.GetFindAddressResponse();

            ShowFindAddressResponse(findAddressResponse);

            Console.ReadLine();
        }