Exemplo n.º 1
0
 public Game(IReel reel, ITransactionHistoryDataStore transactionHistory, IAccountCreditsDataStore accountCredits, IStatisticsDataStore statisticsDataStore, IWin win)
 {
     _reel = reel;
     _transactionHistory  = transactionHistory;
     _accountCredits      = accountCredits;
     _statisticsDataStore = statisticsDataStore;
     _win = win;
 }
Exemplo n.º 2
0
 public Account(IAccountDetailsDataStore accountDetails, IAccountCreditsDataStore accountCredits)
 {
     _accountDetails = accountDetails;
     _accountCredits = accountCredits;
 }