Exemplo n.º 1
0
        static void Main(string[] args)
        {
            var api    = new ApiRequester(30);
            var thread = new Thread(api.Run);

            thread.Start();

            string input;

            while ((input = Console.ReadLine()) != "exit")
            {
                Console.WriteLine("USER INPUT: " + input);
                if (input == "compare")
                {
                    Helper.CompareDataLists();
                }
                if (input == "sync")
                {
                    Helper.CompareDataLists(true);
                }
            }
        }
Exemplo n.º 2
0
 public StashScanner(ApiRequester dataSource)
 {
     this.dataSource = dataSource;
     this.ComposeScanModules();
 }