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); }
public LogMessageEndpointRepo(IApiEndpointConfig settings, ILogServiceAsync <ILogServiceSettings> logService) : base(settings, logService) { }
public EndpointRepo(IApiEndpointConfig settings, ILogServiceAsync <ILogServiceSettings> logService) { _settings = settings; _logService = logService; }
public UserClaimsEndpointRepo(IApiEndpointConfig settings, ILogServiceAsync <ILogServiceSettings> logService) : base(settings, logService) { _settings.BaseAddress = settings.BaseAddress; }
public AuthorizedIpEndpointRepo(IApiEndpointConfig settings, ILogServiceAsync <ILogServiceSettings> logService) : base(settings, logService) { _settings.BaseAddress = settings.BaseAddress; }
public LoggingApiClient(IApiEndpointConfig settings, ILogServiceAsync <ILogServiceSettings> logService) : base(settings, logService) { EndpointLogMessage = new LogMessageEndpointRepo(Settings, logService); }
public BaseAuthClient(IApiEndpointConfig settings, ILogServiceAsync <ILogServiceSettings> logService) { _logService = logService; Settings = settings; }
public BaseAuthClient(IApiEndpointConfig settings) { Settings = settings; _logService = LogServiceAsync <LogServiceOptions> .Instance; }