Exemplo n.º 1
0
        public void Start(string filePath)
        {
            try {
                init.init(filePath);

                Thread.Sleep(1000);    // WAIT FOR FILES TO LOAD
                Thread t2 = new Thread(MainOP);
                t2.Start();
            }
            catch (Exception e) {
                Console.WriteLine(e);
            }
            finally {
                Console.Clear();  // Clear the screen
            }
            int x = ampDB.GetAllDB().Count();

            Greetings(x);// Greetings

            //RUN MAIN OPERATION ON ITS OWN THREAD
        }
Exemplo n.º 2
0
 public AmplifiArrayChecker()
 {
     dataSource = manager.GetAllDB();
 }
Exemplo n.º 3
0
 public AmplifiDAO(string path)
 {
     ampDataBase = AmplifiDB.getInstance();
     dataSource  = ampDataBase.GetAllDB();
 }