private static ServiceInteraction ShowTowns(string county, ITownService townService)
        {
            Console.WriteLine($"Showing towns in county: {county}.");
            var serviceInteraction = townService.GetTowns(county).GetAwaiter().GetResult();

            DescribeServiceInteraction(serviceInteraction, "town");
            return(serviceInteraction);
        }