Пример #1
0
 public HelpDialog(
     LogInDialog loginDialog,
     SelectSiteDialog selectSiteDialog,
     GetSiteDialog getSiteDialog,
     IAuthenticationService authenticationService,
     ISharePointBotStateService sharePointBotStateService)
 {
     _authenticationService     = authenticationService;
     _sharePointBotStateService = sharePointBotStateService;
     _loginDialog      = loginDialog;
     _selectSiteDialog = selectSiteDialog;
     _getSiteDialog    = getSiteDialog;
 }
Пример #2
0
 public SelectSiteDialog(
     IAuthenticationService authenticationService,
     ISharePointService sharePointService,
     ISharePointBotStateService sharePointBotStateService,
     GetSiteDialog getSiteDialog,
     LogInDialog logInDialog)
 {
     _authenticationService     = authenticationService;
     _sharePointService         = sharePointService;
     _sharePointBotStateService = sharePointBotStateService;
     _logInDialog   = logInDialog;
     _getSiteDialog = getSiteDialog;
 }
Пример #3
0
 public RootDialog(
     LogInDialog loginDialog,
     SelectSiteDialog selectSiteDialog,
     GetSiteDialog getSiteDialog,
     HelpDialog helpDialog,
     IAuthenticationService authenticationService,
     ILuisService luis,
     IQnAService qnaService) : base(luis)
 {
     _loginDialog           = loginDialog;
     _selectSiteDialog      = selectSiteDialog;
     _getSiteDialog         = getSiteDialog;
     _helpDialog            = helpDialog;
     _authenticationService = authenticationService;
     _qnaService            = qnaService;
 }