private static void usingCommonFactoryStrategy()
        {
            Console.WriteLine("[Ford Factory] -------------------------------");
            Console.WriteLine();

            var fordFiesta = FordFactory.CreateFordFiesta();

            showCarCreated(fordFiesta);

            var fordFocus = FordFactory.CreateFordFocus();

            showCarCreated(fordFocus);

            Console.WriteLine("----------------------------------------------");
            Console.WriteLine();

            Console.WriteLine("[Chevrolet Factory] --------------------------");
            Console.WriteLine();

            var camaro = ChevroletFactory.CreateCamaro();

            showCarCreated(camaro);

            var cruzeSport = ChevroletFactory.CreateCruzeSport();

            showCarCreated(cruzeSport);

            Console.WriteLine("----------------------------------------------");
        }