Example #1
0
 public LinkedInApiController(IAuthenticationManager authenticationManager, ILinkedInAuthenticationCommand linkedInAuthenticationCommand, IUserAccountsCommand userAccountsCommand, ILinkedInCommand linkedInCommand, ILinkedInQuery linkedInQuery)
 {
     _authenticationManager         = authenticationManager;
     _linkedInAuthenticationCommand = linkedInAuthenticationCommand;
     _userAccountsCommand           = userAccountsCommand;
     _linkedInCommand = linkedInCommand;
     _linkedInQuery   = linkedInQuery;
 }
Example #2
0
 public EmployerAccountsCommand(IEmployersCommand employersCommand, IEmployersQuery employersQuery, ILoginCredentialsCommand loginCredentialsCommand, ILoginCredentialsQuery loginCredentialsQuery, IJobPostersCommand jobPostersCommand, ILinkedInCommand linkedInCommand)
 {
     _employersCommand        = employersCommand;
     _employersQuery          = employersQuery;
     _loginCredentialsCommand = loginCredentialsCommand;
     _loginCredentialsQuery   = loginCredentialsQuery;
     _jobPostersCommand       = jobPostersCommand;
     _linkedInCommand         = linkedInCommand;
 }
Example #3
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;
 }
Example #4
0
 public SettingsController(IEmployerAccountsCommand employerAccountsCommand, IOrganisationsCommand organisationsCommand, IOrganisationsQuery organisationsQuery, IPhoneNumbersQuery phoneNumbersQuery, IIndustriesQuery industriesQuery, ILoginCredentialsCommand loginCredentialsCommand, ILoginCredentialsQuery loginCredentialsQuery, IAuthenticationManager authenticationManager, ICreditsQuery creditsQuery, IEmployerCreditsQuery employerCreditsQuery, IJobPostersCommand jobPostersCommand, IJobPostersQuery jobPostersQuery, INonMemberSettingsCommand nonMemberSettingsCommand, INonMemberSettingsQuery nonMemberSettingsQuery, ISettingsCommand settingsCommand, ISettingsQuery settingsQuery, ILinkedInCommand linkedInCommand, ILinkedInQuery linkedInQuery)
 {
     _employerAccountsCommand  = employerAccountsCommand;
     _authenticationManager    = authenticationManager;
     _creditsQuery             = creditsQuery;
     _employerCreditsQuery     = employerCreditsQuery;
     _jobPostersQuery          = jobPostersQuery;
     _nonMemberSettingsQuery   = nonMemberSettingsQuery;
     _settingsQuery            = settingsQuery;
     _linkedInQuery            = linkedInQuery;
     _linkedInCommand          = linkedInCommand;
     _nonMemberSettingsCommand = nonMemberSettingsCommand;
     _jobPostersCommand        = jobPostersCommand;
     _settingsCommand          = settingsCommand;
     _loginCredentialsCommand  = loginCredentialsCommand;
     _loginCredentialsQuery    = loginCredentialsQuery;
     _industriesQuery          = industriesQuery;
     _phoneNumbersQuery        = phoneNumbersQuery;
     _organisationsCommand     = organisationsCommand;
     _organisationsQuery       = organisationsQuery;
 }