public HelpDialog( LogInDialog loginDialog, SelectSiteDialog selectSiteDialog, GetSiteDialog getSiteDialog, IAuthenticationService authenticationService, ISharePointBotStateService sharePointBotStateService) { _authenticationService = authenticationService; _sharePointBotStateService = sharePointBotStateService; _loginDialog = loginDialog; _selectSiteDialog = selectSiteDialog; _getSiteDialog = getSiteDialog; }
public SelectSiteDialog( IAuthenticationService authenticationService, ISharePointService sharePointService, ISharePointBotStateService sharePointBotStateService, GetSiteDialog getSiteDialog, LogInDialog logInDialog) { _authenticationService = authenticationService; _sharePointService = sharePointService; _sharePointBotStateService = sharePointBotStateService; _logInDialog = logInDialog; _getSiteDialog = getSiteDialog; }
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; }