Beispiel #1
0
 protected BaseAuthHelper(ITokenStorage tokenStorage,
                          ITenantStorage tenantStorage, IEnvironmentStorage environmentStorage)
 {
     this.EnvironmentStorage = environmentStorage;
     this.TokenStorage       = tokenStorage;
     this.TenantStorage      = tenantStorage;
 }
Beispiel #2
0
 public TakeCommand(
     IEnvironmentStorage environmentStorage,
     IBotService botService)
 {
     this.environmentStorage = environmentStorage;
     this.botService         = botService;
 }
Beispiel #3
0
 protected BaseAuthHelper(ITokenStorage tokenStorage,
     ITenantStorage tenantStorage, IEnvironmentStorage environmentStorage)
 {
     this.EnvironmentStorage = environmentStorage;
     this.TokenStorage = tokenStorage;
     this.TenantStorage = tenantStorage;
 }
Beispiel #4
0
 public AddCommand(
     IBotService botService,
     IEnvironmentStorage environmentStorage)
 {
     this.botService         = botService;
     this.environmentStorage = environmentStorage;
 }