Пример #1
0
        public void Execute(IExampleInterface app)
        {
            PredictSP500 predict = new PredictSP500();
            if (app.Args.Length > 0 && app.Args[0].Equals("full"))
                predict.run(true);
            else
                predict.run(false);


            Console.ReadKey();
        }
Пример #2
0
        public void Execute(IExampleInterface app)
        {
            PredictSP500 predict = new PredictSP500();

            if (app.Args.Length > 0 && app.Args[0].Equals("full"))
            {
                predict.run(true);
            }
            else
            {
                predict.run(false);
            }

            Console.ReadKey();
        }