예제 #1
0
 public void BrokerStockStarter(StockInfo information)
 {
     information.NewStock += BrokerStock;
 }
예제 #2
0
 public Stock(StockInfo stockInfo)
 {
     this.stocksInfo = stockInfo;
 }
예제 #3
0
 public void BrokerStockStop(StockInfo information)
 {
     information.NewStock -= BrokerStock;
 }
예제 #4
0
 public Stock(StockInfo info)
 {
     stockInfo = info;
 }
예제 #5
0
 public StockEventArgs(StockInfo info)
 {
     Info = info;
 }
예제 #6
0
 public NewMarketEventArgs(StockInfo info)
 {
     this.info = info;
 }
예제 #7
0
 public void BankStockStarter(StockInfo information)
 {
     information.NewStock += BankStock;
 }
예제 #8
0
 public void BankStockStop(StockInfo information)
 {
     information.NewStock -= BankStock;
 }