コード例 #1
0
 public MaintainCustodiansController(IUserAccountsCommand userAccountsCommand, ILoginCredentialsCommand loginCredentialsCommand, ILoginCredentialsQuery loginCredentialsQuery, ICustodiansQuery custodiansQuery, ICommunitiesQuery communitiesQuery)
 {
     _userAccountsCommand     = userAccountsCommand;
     _loginCredentialsCommand = loginCredentialsCommand;
     _loginCredentialsQuery   = loginCredentialsQuery;
     _custodiansQuery         = custodiansQuery;
     _communitiesQuery        = communitiesQuery;
 }
コード例 #2
0
 public MaintainAdministratorsController(IUserAccountsCommand userAccountsCommand, ILoginCredentialsCommand loginCredentialsCommand, ILoginCredentialsQuery loginCredentialsQuery, IAdministratorAccountsCommand administratorAccountsCommand, IAdministratorsQuery administratorsQuery)
 {
     _userAccountsCommand          = userAccountsCommand;
     _loginCredentialsCommand      = loginCredentialsCommand;
     _loginCredentialsQuery        = loginCredentialsQuery;
     _administratorAccountsCommand = administratorAccountsCommand;
     _administratorsQuery          = administratorsQuery;
 }
コード例 #3
0
 public LinkedInApiController(IAuthenticationManager authenticationManager, ILinkedInAuthenticationCommand linkedInAuthenticationCommand, IUserAccountsCommand userAccountsCommand, ILinkedInCommand linkedInCommand, ILinkedInQuery linkedInQuery)
 {
     _authenticationManager         = authenticationManager;
     _linkedInAuthenticationCommand = linkedInAuthenticationCommand;
     _userAccountsCommand           = userAccountsCommand;
     _linkedInCommand = linkedInCommand;
     _linkedInQuery   = linkedInQuery;
 }
コード例 #4
0
 public LinkedInController(IUserAccountsCommand userAccountsCommand, IAccountsManager accountsManager, IFaqsQuery faqsQuery, ILinkedInCommand linkedInCommand, ILinkedInQuery linkedInQuery, IIndustriesQuery industriesQuery)
 {
     _userAccountsCommand = userAccountsCommand;
     _accountsManager     = accountsManager;
     _faqsQuery           = faqsQuery;
     _linkedInCommand     = linkedInCommand;
     _linkedInQuery       = linkedInQuery;
     _industriesQuery     = industriesQuery;
 }
コード例 #5
0
 public AccountVerificationsCommand(IMembersQuery membersQuery, IUserAccountsCommand userAccountsCommand, IEmailVerificationsCommand emailVerificationsCommand, IEmailVerificationsQuery emailVerificationsQuery, IEmailsCommand emailsCommand, IChannelManager <IService> activationEmailManager)
 {
     _membersQuery              = membersQuery;
     _userAccountsCommand       = userAccountsCommand;
     _emailVerificationsCommand = emailVerificationsCommand;
     _emailVerificationsQuery   = emailVerificationsQuery;
     _emailsCommand             = emailsCommand;
     _activationEmailManager    = activationEmailManager;
 }
コード例 #6
0
 public MaintainMembersController(IUserAccountsCommand userAccountsCommand, ILoginCredentialsCommand loginCredentialsCommand, ILoginCredentialsQuery loginCredentialsQuery, IMembersQuery membersQuery, IAdministrativeMemberSearchCommand administrativeMemberSearchCommand, IEmailsCommand emailsCommand)
 {
     _userAccountsCommand               = userAccountsCommand;
     _loginCredentialsCommand           = loginCredentialsCommand;
     _loginCredentialsQuery             = loginCredentialsQuery;
     _membersQuery                      = membersQuery;
     _administrativeMemberSearchCommand = administrativeMemberSearchCommand;
     _emailsCommand                     = emailsCommand;
 }
コード例 #7
0
 public SettingsController(IMemberAccountsCommand memberAccountsCommand, ILoginCredentialsQuery loginCredentialsQuery, IUserAccountsCommand userAccountsCommand, IAuthenticationManager authenticationManager, IAccountVerificationsCommand accountVerificationsCommand, ISettingsQuery settingsQuery, ISettingsCommand settingsCommand, IVerticalsQuery verticalsQuery)
 {
     _memberAccountsCommand       = memberAccountsCommand;
     _loginCredentialsQuery       = loginCredentialsQuery;
     _userAccountsCommand         = userAccountsCommand;
     _authenticationManager       = authenticationManager;
     _accountVerificationsCommand = accountVerificationsCommand;
     _settingsQuery   = settingsQuery;
     _settingsCommand = settingsCommand;
     _verticalsQuery  = verticalsQuery;
 }
コード例 #8
0
 public MaintainEmployersController(IUserAccountsCommand userAccountsCommand, ILoginCredentialsCommand loginCredentialsCommand, ILoginCredentialsQuery loginCredentialsQuery, IEmployerAccountsCommand employerAccountsCommand, IEmployersQuery employersQuery, IOrganisationsQuery organisationsQuery, IPhoneNumbersQuery phoneNumbersQuery, IExecuteEmployerSearchCommand executeEmployerSearchCommand, IEmailsCommand emailsCommand, IAccountReportsQuery accountReportsQuery)
 {
     _userAccountsCommand          = userAccountsCommand;
     _loginCredentialsCommand      = loginCredentialsCommand;
     _loginCredentialsQuery        = loginCredentialsQuery;
     _employerAccountsCommand      = employerAccountsCommand;
     _employersQuery               = employersQuery;
     _organisationsQuery           = organisationsQuery;
     _phoneNumbersQuery            = phoneNumbersQuery;
     _executeEmployerSearchCommand = executeEmployerSearchCommand;
     _emailsCommand       = emailsCommand;
     _accountReportsQuery = accountReportsQuery;
 }
コード例 #9
0
ファイル: VerticalsModule.cs プロジェクト: formist/LinkMe
        protected override void OnInit()
        {
            base.OnInit();

            _verticalsCommand              = Container.Current.Resolve <IVerticalsCommand>();
            _authenticationManager         = Container.Current.Resolve <IAuthenticationManager>();
            _cookieManager                 = Container.Current.Resolve <ICookieManager>();
            _externalAuthenticationCommand = Container.Current.Resolve <IExternalAuthenticationCommand>();
            _userAccountsCommand           = Container.Current.Resolve <IUserAccountsCommand>();
            _memberAccountsCommand         = Container.Current.Resolve <IMemberAccountsCommand>();
            _memberAffiliationsCommand     = Container.Current.Resolve <IMemberAffiliationsCommand>();
            _locationQuery                 = Container.Current.Resolve <ILocationQuery>();

            _nonVerticalHost = ApplicationContext.Instance.GetProperty("website.linkme.host");
        }