コード例 #1
0
 public OrganisationsController(IOrganisationsCommand organisationsCommand, IOrganisationsQuery organisationsQuery, ILoginCredentialsQuery loginCredentialsQuery, IAdministratorsQuery administratorsQuery, IEmployerAccountsCommand employerAccountsCommand, IEmployersQuery employersQuery, IExecuteOrganisationSearchCommand executeOrganisationSearchCommand, ICommunitiesQuery communitiesQuery, IIndustriesQuery industriesQuery, IPhoneNumbersQuery phoneNumbersQuery, ILocationQuery locationQuery, ISettingsQuery settingsQuery, ISettingsCommand settingsCommand, IEmailsCommand emailsCommand, IAccountReportsQuery accountReportsQuery)
 {
     _organisationsCommand             = organisationsCommand;
     _organisationsQuery               = organisationsQuery;
     _loginCredentialsQuery            = loginCredentialsQuery;
     _administratorsQuery              = administratorsQuery;
     _employerAccountsCommand          = employerAccountsCommand;
     _employersQuery                   = employersQuery;
     _executeOrganisationSearchCommand = executeOrganisationSearchCommand;
     _communitiesQuery                 = communitiesQuery;
     _industriesQuery                  = industriesQuery;
     _phoneNumbersQuery                = phoneNumbersQuery;
     _locationQuery       = locationQuery;
     _settingsQuery       = settingsQuery;
     _settingsCommand     = settingsCommand;
     _emailsCommand       = emailsCommand;
     _accountReportsQuery = accountReportsQuery;
 }
コード例 #2
0
 public ExecuteEmployerSearchCommand(IEmployersRepository repository, IRecruitersQuery recruitersQuery, IExecuteOrganisationSearchCommand executeOrganisationSearchCommand)
     : base(recruitersQuery)
 {
     _repository = repository;
     _executeOrganisationSearchCommand = executeOrganisationSearchCommand;
 }
コード例 #3
0
 public OrganisationsApiController(IExecuteOrganisationSearchCommand executeOrganisationSearchCommand, IOrganisationsQuery organisationsQuery, IAllocationsCommand allocationsCommand)
 {
     _executeOrganisationSearchCommand = executeOrganisationSearchCommand;
     _organisationsQuery = organisationsQuery;
     _allocationsCommand = allocationsCommand;
 }