Ejemplo n.º 1
0
 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;
 }
Ejemplo n.º 4
0
 public AuthenticationController(IHttpSessionService sessionService, IApplicationEventDispatcher eventDispatcher)
 {
     _sessionService  = sessionService;
     _eventDispatcher = eventDispatcher;
 }