public AuthenticationProviderContextService(
     IAuthenticationSchemeProvider schemeProvider,
     IAuthenticationProviderService authenticationProviderService,
     IServiceProvider serviceProvider
     )
 {
     _schemeProvider = schemeProvider;
     _authenticationProviderService = authenticationProviderService;
     _serviceProvider = serviceProvider;
 }
Exemplo n.º 2
0
 public AuthenticationService(IAuthenticationConfigurationService authenticationConfigurationService, IAuthenticationProviderService authenticationProviderService, IAuthenticationValidator authenticationValidator, IEmailService emailService, IImageAnalysisService imageAnalysisService, ISecurityService securityService, IStringService stringService, IUnitOfWorkFactory unitOfWorkFactory, IUserRepository userRepository, IUploadService uploadService, IWebHelperService webHelperService)
 {
     _authenticationConfigurationService = authenticationConfigurationService;
     _authenticationProviderService      = authenticationProviderService;
     _authenticationValidator            = authenticationValidator;
     _emailService         = emailService;
     _imageAnalysisService = imageAnalysisService;
     _securityService      = securityService;
     _stringService        = stringService;
     _unitOfWorkFactory    = unitOfWorkFactory;
     _uploadService        = uploadService;
     _userRepository       = userRepository;
     _webHelperService     = webHelperService;
 }
Exemplo n.º 3
0
 public AuthenticationProviderController(IAuthenticationProviderService authenticationProviderService, IMapper mapper, AuthenticationProviderContextService authenticationProvider)
 {
     _authenticationProviderService = authenticationProviderService;
     _mapper = mapper;
     _authenticationProvider = authenticationProvider;
 }