public void BrokerStockStarter(StockInfo information) { information.NewStock += BrokerStock; }
public Stock(StockInfo stockInfo) { this.stocksInfo = stockInfo; }
public void BrokerStockStop(StockInfo information) { information.NewStock -= BrokerStock; }
public Stock(StockInfo info) { stockInfo = info; }
public StockEventArgs(StockInfo info) { Info = info; }
public NewMarketEventArgs(StockInfo info) { this.info = info; }
public void BankStockStarter(StockInfo information) { information.NewStock += BankStock; }
public void BankStockStop(StockInfo information) { information.NewStock -= BankStock; }