Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            Migratoratron.Run();

            Console.WriteLine("Outta here :-)");
            Console.ReadKey();
        }
        internal static void Run()
        {
            // Initialize
            Migratoratron migrate = new Migratoratron();
            migrate.Init();

            // transfer the old schema over
            migrate.TransferSchema();

            // transfer the old documents over
            migrate.TransferDocuments();
        }
        static internal void Run()
        {
            // Initialize
            Migratoratron migrate = new Migratoratron();

            migrate.Init();

            // transfer the old schema over
            migrate.TransferSchema();

            // transfer the old documents over
            migrate.TransferDocuments();
        }