예제 #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 GetSiteDialog(ISharePointBotStateService sharePointBotStateService)
 {
     _sharePointBotStateService = sharePointBotStateService;
 }