public iOSNavigationService(
     IAuthenticationService authenticationService,
     IPlatformParameterProvider platformParameterProvider)
     : base(authenticationService, platformParameterProvider)
 {
     CreatePageViewModelMappings();
 }
Пример #2
0
        public NavigationService(
            IAuthenticationService authenticationService,
            IPlatformParameterProvider platformParameterProvider)
        {
            _authenticationService         = authenticationService;
            _msalPlatformParameterProvider = platformParameterProvider;
            _mappings = new Dictionary <Type, Type>();

            CreatePageViewModelMappings();
        }