public FoundationExtensionsTests()
 {
     mvvmCrossFoundation =
         constructFoundation().StartRegisteringPlatformServices()
         .WithDialogService(dialogService)
         .WithBrowserService(browserService)
         .WithKeyValueStorage(keyValueStorage)
         .WithUserPreferences(userPreferences)
         .WithOnboardingStorage(onboardingStorage)
         .WithNavigationService(navigationService)
         .WithApiErrorHandlingService(apiErrorHandlingService)
         .WithAccessRestrictionStorage(accessRestrictionStorage)
         .Build();
 }
예제 #2
0
 public FoundationExtensionsTests()
 {
     mvvmCrossFoundation =
         constructFoundation().StartRegisteringPlatformServices()
         .WithDialogService(dialogService)
         .WithBrowserService(browserService)
         .WithKeyValueStorage(keyValueStorage)
         .WithFeedbackService(feedbackService)
         .WithUserPreferences(userPreferences)
         .WithOnboardingStorage(onboardingStorage)
         .WithNavigationService(navigationService)
         .WithErrorHandlingService(errorHandlingService)
         .WithAccessRestrictionStorage(accessRestrictionStorage)
         .WithLastTimeUsageStorage(lastTimeUsageStorage)
         .WithPermissionsService(permissionsService)
         .WithCalendarService(calendarService)
         .Build();
 }