public GamePageViewModel(INavigationService navigationService,
                          IAppDictionaryLocalRepository appDictionaryLocalRepository,
                          IGameContentAppService gameContentAppService)
     : base(navigationService, appDictionaryLocalRepository)
 {
     _gameContentAppService = gameContentAppService;
 }
Example #2
0
        public MainPageViewModel(INavigationService navigationService,
                                 IGameContentAppService gameContentAppService,
                                 IAppDictionaryLocalRepository appDictionaryLocalRepository)
            : base(navigationService, appDictionaryLocalRepository)
        {
            Title = "Main Page";

            _gameContentAppService = gameContentAppService;
        }