Example #1
0
 public AuthorizeController(AppConfig config, UserTenantContainer userTenantContainer, UserSettingsContainer userSettingsContainer, IJwtHelpers jwtHelper, IOpenIdProviderConfiguration openIdProviderConfiguration, IAuthenticationContext authenticationContext)
 {
     this.config = config;
     this.userTenantContainer         = userTenantContainer;
     this.userSettingsContainer       = userSettingsContainer;
     this.jwtHelper                   = jwtHelper;
     this.openIdProviderConfiguration = openIdProviderConfiguration;
     this.authenticationContext       = authenticationContext;
 }
Example #2
0
 public UserTenantController(UserTenantContainer container, IJwtHelpers jwtHelper, ISendGridClientFactory sendGridClientFactory)
 {
     this.container             = container;
     this.jwtHelper             = jwtHelper;
     this.sendGridClientFactory = sendGridClientFactory;
 }