internal GameController(IStockTrader stockTrader, IPlayerRecordDAO playerRecordDAO)
 {
     this.stockTrader     = stockTrader;
     this.playerRecordDAO = playerRecordDAO;
 }
 internal LeaderboardController(IPlayerRecordDAO playerRecordDAO)
 {
     this.playerRecordDAO = playerRecordDAO;
 }