public AuthenticationLdapService(LdapOptions ldapOptions, IIdentityMvcService identityMvcService, ILogger <AuthenticationLdapService> logger)
 {
     _ldapOptions        = ldapOptions;
     _connection         = new LdapConnection();
     _identityMvcService = identityMvcService;
     _logger             = logger;
 }
 public AccountController(IAuthenticationLdapMvcService authenticationLdapService, IIdentityMvcService identityMvcService, LocalStorage localStorage, ILogger <AccountController> logger)
 {
     _authenticationLdapService = authenticationLdapService;
     _localStorage = localStorage;
     _logger       = logger;
 }