Ejemplo n.º 1
0
        private void button1_Click(object sender, EventArgs e)
        {
            string company       = comboBox1.Text; //strings from the box
            string num_of_shares = textBox1.Text;
            string money         = textBox2.Text;

            int   shareSize = Convert.ToInt32(num_of_shares); //make string data into ints
            float price     = Convert.ToSingle(money);

            BuyOrder buyorder = new BuyOrder(shareSize, price, company);

            foreach (Company value in realdata._company) //go through all companies
            {
                if (value.compName == company)
                {
                    value.Buyorder.Add(buyorder); //add the order to the list of orders in company
                    value.BidSellMatch();         //check for transaction
                    realdata.Notify();            //update all views
                }
            }
        }
Ejemplo n.º 2
0
        private void button1_Click(object sender, EventArgs e)
        {
            string company = comboBox1.Text; //strings from the box
            string num_of_shares = textBox1.Text;
            string money = textBox2.Text;

            int shareSize = Convert.ToInt32(num_of_shares); //make string data into ints
            float price = Convert.ToSingle(money);

            BuyOrder buyorder = new BuyOrder(shareSize, price, company);

            foreach (Company value in realdata._company) //go through all companies
            {
                if (value.compName == company)
                {
                    value.Buyorder.Add(buyorder);  //add the order to the list of orders in company
                    value.BidSellMatch(); //check for transaction
                    realdata.Notify(); //update all views

                }
            }
        }