Exemple #1
0
 public GameStateDomainService(ICurrentGameRepository currentGameRepository)
 {
     _currentGameRepository = currentGameRepository;
 }
Exemple #2
0
 public GameService(ICurrentGameRepository currentGameRepository, IFinishedGameService finishedGameService)
 {
     _currentGameRepository = currentGameRepository;
     _finishedGameService   = finishedGameService;
     Initialize();
 }