Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            Console.BackgroundColor = ConsoleColor.DarkGray;
            Console.ForegroundColor = ConsoleColor.Black;
            Console.Clear();

            CountryController controller = new CountryController();

            controller.WelcomeAction();
        }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            CountryController country = new CountryController();

            country.WelcomeAction();
        }