Exemple #1
0
 public AuthenticationService(
     IQuickspatchHttpContext httpContext,
     IClaimsManager claimsManager, IFormAuthenticationService formAuthenticationService,
     ISessionIDManager sessionIdManager, IDiagnosticService diagnosticService, IUserRepository userRepository
     , ISystemEventService systemEventService, IFranchiseeConfigurationRepository franchiseeConfigurationRepository)
 {
     HttpContext = httpContext;
     FormAuthenticationService          = formAuthenticationService;
     ClaimsManager                      = claimsManager;
     SessionIdManager                   = sessionIdManager;
     _diagnosticService                 = diagnosticService;
     _userRepository                    = userRepository;
     _systemEventService                = systemEventService;
     _franchiseeConfigurationRepository = franchiseeConfigurationRepository;
 }
Exemple #2
0
 public OperationAuthorization(IQuickspatchHttpContext oxProjectContext,
                               IUserRoleFunctionRepository userRoleFunctionRepostory)
 {
     _oxProjectContext          = oxProjectContext;
     _userRoleFunctionRepostory = userRoleFunctionRepostory;
 }