コード例 #1
0
 public HomeController(IBusinessManagerContainer businessManagerContainer,
                       IQueryContainer queryContainer,
                       IFlashMessenger flashMessenger,
                       IFormAuthenticationService formAuthenticationService)
 {
     this.businessManagerContainer  = businessManagerContainer;
     this.queryContainer            = queryContainer;
     this.flashMessenger            = flashMessenger;
     this.formAuthenticationService = formAuthenticationService;
 }
コード例 #2
0
ファイル: HomeController.cs プロジェクト: AbdoNile/Foundation
 public HomeController(IBusinessManagerContainer businessManagerContainer,
     IQueryContainer queryContainer, 
     IFlashMessenger flashMessenger,
     IFormAuthenticationService formAuthenticationService)
 {
     this.businessManagerContainer = businessManagerContainer;
     this.queryContainer = queryContainer;
     this.flashMessenger = flashMessenger;
     this.formAuthenticationService = formAuthenticationService;
 }
コード例 #3
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;
 }
コード例 #4
0
 public AuthenticationService(IFormAuthenticationService formsAuthentication, IPasswordHash passwordHash, HttpContextBase context)
 {
     this.formsAuthentication = formsAuthentication;
     this.passwordHash        = passwordHash;
     this.context             = context;
 }