public TradeLedger(StockCollection stockCollection) { Trades = new List <Trade>(); Stocks = stockCollection; }
public Exchange() { Stocks = new StockCollection(); Trades = new TradeLedger(Stocks); }