public AuthorizationController(IAuthorizationManager _authManager, ICookieSetup _cookieSetup, IServiceManager _serviceManager)
 {
     this._authManager    = _authManager;
     this._cookieSetup    = _cookieSetup;
     this._serviceManager = _serviceManager;
 }
Exemplo n.º 2
0
 public AuthorizationManager(ICookieSetup cookieSetup, ISessionManager sessionManager, IServiceManager serviceManager)
 {
     _cookieSetup    = cookieSetup;
     _sessionManager = sessionManager;
     _serviceManager = serviceManager;
 }