Beispiel #1
0
 public SurveyService(ISurveyScheduler surveyScheduler, ResumptionCookie cookie)
 {
     SetField.NotNull(out this.surveyScheduler, nameof(surveyScheduler), surveyScheduler);
     SetField.NotNull(out this.cookie, nameof(cookie), cookie);
 }
Beispiel #2
0
 public SettingsScorable(IDialogStack stack, IContosoFlowersDialogFactory dialogFactory)
 {
     SetField.NotNull(out this.stack, nameof(stack), stack);
     SetField.NotNull(out this.dialogFactory, nameof(dialogFactory), dialogFactory);
 }
Beispiel #3
0
 public DialogFactory(IComponentContext scope)
 {
     SetField.NotNull(out Scope, nameof(scope), scope);
 }