예제 #1
0
        static void Main(string[] args)
        {
            // Welcoming user with basic instructions
            WelcomeUser();
            string location = "Invalid Location";

            do
            {
                Console.Write("Type in the desired location: ");
                location = Console.ReadLine();
            } while (IOHelper.IsLocationValid(location) == false);

            Police police = new Police(location);

            police.ChooseDevice();

            Console.ReadKey();
        }