public CustomSignInManagerFake(UserManager <TUser> userManager, IHttpContextAccessor contextAccessor, IUserClaimsPrincipalFactory <TUser> claimsFactory,
                                IOptions <IdentityOptions> optionsAccessor, ILogger <SignInManager <TUser> > logger, A3SContext a3SContext, IAuthenticationSchemeProvider authenticationSchemeProvider,
                                ILdapAuthenticationModeRepository ldapAuthenticationModeRepository, ILdapConnectionService ldapConnectionService, IUserConfirmation <TUser> userConfirmation)
     : base(userManager, contextAccessor, claimsFactory, optionsAccessor, logger, a3SContext, authenticationSchemeProvider, ldapAuthenticationModeRepository, ldapConnectionService,
            userConfirmation)
 {
 }
Example #2
0
 public LdapConnectionService(A3SContext a3SContext, ILogger <LdapConnectionService> logger, ILdapAuthenticationModeRepository ldapAuthenticationModeRepository, IUserRepository userRepository)
 {
     this.a3SContext = a3SContext;
     this.logger     = logger;
     this.ldapAuthenticationModeRepository = ldapAuthenticationModeRepository;
     this.userRepository = userRepository;
 }
 public LdapConnectionService(ILdapAuthenticationModeRepository ldapAuthenticationModeRepository, IUserRepository userRepository,
                              ILdapConnectionClient ldapConnectionClient, ILdapConnectionClient ldapTestConnectionClient)
 {
     this.ldapAuthenticationModeRepository = ldapAuthenticationModeRepository;
     this.userRepository           = userRepository;
     this.ldapConnectionClient     = ldapConnectionClient;
     this.ldapTestConnectionClient = ldapTestConnectionClient;
 }
Example #4
0
 public UserService(IUserRepository userRepository, IRoleRepository roleRepository, ITeamRepository teamRepository, ILdapAuthenticationModeRepository ldapAuthenticationModeRepository, IMapper mapper, ILdapConnectionService ldapConnectionService)
 {
     this.userRepository = userRepository;
     this.roleRepository = roleRepository;
     this.teamRepository = teamRepository;
     this.ldapAuthenticationModeRepository = ldapAuthenticationModeRepository;
     this.mapper = mapper;
     this.ldapConnectionService = ldapConnectionService;
 }
Example #5
0
 public CustomSignInManager(UserManager <TUser> userManager, IHttpContextAccessor contextAccessor, IUserClaimsPrincipalFactory <TUser> claimsFactory,
                            IOptions <IdentityOptions> optionsAccessor, ILogger <SignInManager <TUser> > logger, A3SContext a3SContext, IAuthenticationSchemeProvider authenticationSchemeProvider,
                            ILdapAuthenticationModeRepository ldapAuthenticationModeRepository, ILdapConnectionService ldapConnectionService)
     : base(userManager, contextAccessor, claimsFactory, optionsAccessor, logger, authenticationSchemeProvider)
 {
     this.a3SContext = a3SContext;
     this.logger     = logger;
     this.ldapAuthenticationModeRepository = ldapAuthenticationModeRepository;
     this.ldapConnectionService            = ldapConnectionService;
 }
 public SecurityContractDefaultConfigurationService(IRoleRepository roleRepository, IUserRepository userRepository, IFunctionRepository functionRepository, ITeamRepository teamRepository, IApplicationRepository applicationRepository, IApplicationDataPolicyRepository applicationDataPolicyRepository, ILdapAuthenticationModeRepository ldapAuthenticationModeRepository)
 {
     this.roleRepository                   = roleRepository;
     this.userRepository                   = userRepository;
     this.functionRepository               = functionRepository;
     this.teamRepository                   = teamRepository;
     this.applicationRepository            = applicationRepository;
     this.applicationDataPolicyRepository  = applicationDataPolicyRepository;
     this.ldapAuthenticationModeRepository = ldapAuthenticationModeRepository;
 }
Example #7
0
 public LdapAuthenticationModeService(ILdapAuthenticationModeRepository ldapAuthenticationModeRepository, IMapper mapper, ILdapConnectionService ldapConnectionService)
 {
     this.ldapAuthenticationModeRepository = ldapAuthenticationModeRepository;
     this.ldapConnectionService            = ldapConnectionService;
     this.mapper = mapper;
 }