Esempio n. 1
0
        private void Submit_Click(object sender, RoutedEventArgs e)
        {
            var connectionManager = new ConnectionManager();

            if(!connectionManager.createConnection())
            {
                MessageBox.Show("Connection to server has failed!");
                return;
            }

            connectionManager.InitServerFS();
            algo = new StocksAlgo(Props, connectionManager);
            startClac();
        }