public AccountController(IUserLogic userLogic, ISuggestionLogic suggestionLogic,
                          IConfiguration configuration, ILoggerFactory loggerFactory,
                          ILDAPAuthenticationService lDAPAuthenticationService) : base(configuration, loggerFactory)
 {
     this.userLogic       = userLogic;
     this.suggestionLogic = suggestionLogic;
     authService          = lDAPAuthenticationService;
 }
Exemplo n.º 2
0
 public LDAPAccountController(ILDAPAuthenticationService ldapAuthenticationService, IActiveAnalyticsLogger logger)
 {
     _ldapAuthenticationService = ldapAuthenticationService;
     _logger      = logger;
     _logMessages = new StringBuilder();
 }