public GameStepNavigationViewModel(IGameStateService gameStateService,
                                           IGamePartService gamePartService)
        {
            _gameStateService = gameStateService;
            _gamePartService  = gamePartService;


            _totalGameParts = _gamePartService.GetTotalNumberOfGameParts();
            CurrentGamePart = gameStateService.GetCurrentActiveGamePart();
        }
Ejemplo n.º 2
0
 public TaskGameStepViewModel(IGamePartService gamePartService)
 {
     _gamePartService = gamePartService;
 }