Esempio n. 1
0
 public AuthenticationApiClient(IApiEndpointConfig settings, ILogServiceAsync <ILogServiceSettings> logService)
     : base(settings, logService)
 {
     _appRepo              = new AppEndpointRepo(Settings, logService);
     _appUserRepo          = new AppUserEndpointRepo(Settings, logService);
     orgAppUserAuthIpRepo  = new AuthorizedIpEndpointRepo(Settings, logService);
     _orgAppUserRoleRepo   = new RolesEndpointRepo(Settings, logService);
     _userClaimsRepo       = new UserClaimsEndpointRepo(Settings, logService);
     _orgAppUserClaimsRepo = new OrgAppUserClaimsEndpointRepo(Settings, logService);
 }
Esempio n. 2
0
 public LogMessageEndpointRepo(IApiEndpointConfig settings, ILogServiceAsync <ILogServiceSettings> logService)
     : base(settings, logService)
 {
 }
Esempio n. 3
0
 public EndpointRepo(IApiEndpointConfig settings, ILogServiceAsync <ILogServiceSettings> logService)
 {
     _settings   = settings;
     _logService = logService;
 }
Esempio n. 4
0
 public UserClaimsEndpointRepo(IApiEndpointConfig settings, ILogServiceAsync <ILogServiceSettings> logService)
     : base(settings, logService)
 {
     _settings.BaseAddress = settings.BaseAddress;
 }
Esempio n. 5
0
 public AuthorizedIpEndpointRepo(IApiEndpointConfig settings, ILogServiceAsync <ILogServiceSettings> logService)
     : base(settings, logService)
 {
     _settings.BaseAddress = settings.BaseAddress;
 }
Esempio n. 6
0
 public LoggingApiClient(IApiEndpointConfig settings, ILogServiceAsync <ILogServiceSettings> logService)
     : base(settings, logService)
 {
     EndpointLogMessage = new LogMessageEndpointRepo(Settings, logService);
 }
Esempio n. 7
0
 public BaseAuthClient(IApiEndpointConfig settings, ILogServiceAsync <ILogServiceSettings> logService)
 {
     _logService = logService;
     Settings    = settings;
 }
Esempio n. 8
0
 public BaseAuthClient(IApiEndpointConfig settings)
 {
     Settings    = settings;
     _logService = LogServiceAsync <LogServiceOptions> .Instance;
 }