Exemplo n.º 1
0
        static void Main( string[] args )
        {
            UvMoney.Data.Xml.XmlDataProvider provider = new UvMoney.Data.Xml.XmlDataProvider();

            new Importer( provider ).ImportXml();

            if( args.Length > 0 )
            {
                provider.ArchiveTransactions( DateTime.Parse( args[0] ) );
                Console.WriteLine( "Archived transactions prior to {0}", args[0] );
            }
        }