示例#1
0
 public AccountsController(IAccountRepository accountRepository, INotificationService notificationService, IAccountsSettingsService accountsSettingsService, IGetRedirectUrlService getRedirectUrlService, IUserProfileService userProfileService, IContactProfileService contactProfileService)
 {
     this.accountRepository       = accountRepository;
     this.notificationService     = notificationService;
     this.accountsSettingsService = accountsSettingsService;
     this.getRedirectUrlService   = getRedirectUrlService;
     this.userProfileService      = userProfileService;
     this.contactProfileService   = contactProfileService;
 }
 public RedirectUnauthenticatedAttribute(IGetRedirectUrlService getRedirectUrlService)
 {
     this.getRedirectUrlService = getRedirectUrlService;
 }
示例#3
0
 public RedirectUnauthenticatedAttribute()
 {
     this.getRedirectUrlService = ServiceLocator.ServiceProvider.GetService <IGetRedirectUrlService>();
 }
示例#4
0
 public FedAuthLoginButtonRepository(BaseCorePipelineManager pipelineManager, IGetRedirectUrlService getRedirectUrlService)
 {
     _pipelineManager       = pipelineManager;
     _getRedirectUrlService = getRedirectUrlService;
 }
示例#5
0
 public AccountsController(IAccountRepository accountRepository, INotificationService notificationService, IAccountsSettingsService accountsSettingsService, IGetRedirectUrlService getRedirectUrlService, IUserProfileService userProfileService, IFedAuthLoginButtonRepository fedAuthLoginRepository)
 {
     this.FedAuthLoginRepository  = fedAuthLoginRepository;
     this.AccountRepository       = accountRepository;
     this.NotificationService     = notificationService;
     this.AccountsSettingsService = accountsSettingsService;
     this.GetRedirectUrlService   = getRedirectUrlService;
     this.UserProfileService      = userProfileService;
 }
示例#6
0
        public AccountsController(IAccountRepository accountRepository, IAccountsSettingsService accountsSettingsService, IGetRedirectUrlService getRedirectUrlService, IUserProfileService userProfileService)
        {
            this.AccountRepository = accountRepository;

            this.AccountsSettingsService = accountsSettingsService;
            this.GetRedirectUrlService   = getRedirectUrlService;
            this.userProfileService      = userProfileService;
        }