Пример #1
0
 public Game(IReel reel, ITransactionHistoryDataStore transactionHistory, IAccountCreditsDataStore accountCredits, IStatisticsDataStore statisticsDataStore, IWin win)
 {
     _reel = reel;
     _transactionHistory  = transactionHistory;
     _accountCredits      = accountCredits;
     _statisticsDataStore = statisticsDataStore;
     _win = win;
 }
Пример #2
0
 public SlotMachine(IReel reel)
 {
     this.reel = reel;
 }
Пример #3
0
 public Game(IReel reel, IWin win)
 {
     _reel = reel;
     _win  = win;
 }