Beispiel #1
0
        static void Main(string[] args)
        {
            StructuredDataETL etl = new ETL();

            etl.Execute();

            Task task = GetAsyncTask();

            foreach (int x in GetEvenNumber())
            {
                Console.Write("Even Numbers are: ");
                Console.WriteLine(x);
            }
            foreach (int x in GetFiboNacciNumber(10))
            {
                Console.WriteLine(x);
            }
            Console.ReadLine();
        }
Beispiel #2
0
        private void button1_Click(object sender, EventArgs e)
        {
            ETL etl = new ETL(_librarian);

            etl.Export("export");
        }