public LoginController(AuthenticationService authenticationService, IHttpSessionService httpSessionService) { _authenticationService = authenticationService; _httpSessionService = httpSessionService; }
public SessionAuthenticationFilter(OperationContext operationContext, IHttpSessionService httpSessionService, SessionService sessionService) { _operationContext = operationContext; _httpSessionService = httpSessionService; _sessionService = sessionService; }
public SessionAuthenticationFilter(OperationContext operationContext, IHttpSessionService httpSessionService, IApplicationEventDispatcher dispatcher) { _operationContext = operationContext; _httpSessionService = httpSessionService; _dispatcher = dispatcher; }
public AuthenticationController(IHttpSessionService sessionService, IApplicationEventDispatcher eventDispatcher) { _sessionService = sessionService; _eventDispatcher = eventDispatcher; }