public ContextualQuestionsViewModel(IDialogService dialogService, ReviewDataCollector dataCollector, IPageFactory pageFactory, INavigation navigation, ThankYouPageViewModel thankYouPageViewModel)
 {
     this.dialogService         = dialogService;
     this.dataCollector         = dataCollector;
     this.pageFactory           = pageFactory;
     this.navigation            = navigation;
     this.thankYouPageViewModel = thankYouPageViewModel;
 }
Ejemplo n.º 2
0
 public ReviewPageViewModel(IShareIntentReceiver intentReceiver, IPageFactory pageFactory, INavigation navigation, QuestionPageViewModel questionPageViewModel, ReviewDataCollector dataCollector)
 {
     this.intentReceiver                = intentReceiver;
     this.pageFactory                   = pageFactory;
     this.navigation                    = navigation;
     this.questionPageViewModel         = questionPageViewModel;
     this.dataCollector                 = dataCollector;
     intentReceiver.ItemsReceivedEvent += IntentReceiverOnItemsReceivedEvent;
 }
 public QuestionPageViewModel(IDialogService dialogService, ReviewDataCollector dataCollector, IPageFactory pageFactory, INavigation navigation, ThankYouPageViewModel thankYouPageViewModel)
 {
     this.dialogService         = dialogService;
     this.dataCollector         = dataCollector;
     this.pageFactory           = pageFactory;
     this.navigation            = navigation;
     this.thankYouPageViewModel = thankYouPageViewModel;
     resetEverythingOnThisPage();
 }
Ejemplo n.º 4
0
 public ConnectionHandler(ISettingsStorage storage, ReviewDataCollector dataCollector, IDialogService dialogService)
 {
     this.storage       = storage;
     this.dataCollector = dataCollector;
     this.dialogService = dialogService;
 }