Пример #1
0
 public EmployerJobAdsCommand(IJobAdsCommand jobAdsCommand, IJobAdsQuery jobAdsQuery, IEmployerCreditsCommand employerCreditsCommand, int dailyLimit, int weeklyLimit)
 {
     _jobAdsCommand          = jobAdsCommand;
     _jobAdsQuery            = jobAdsQuery;
     _employerCreditsCommand = employerCreditsCommand;
     _dailyLimit             = dailyLimit;
     _weeklyLimit            = weeklyLimit;
 }
 public JobAdApplicationSubmissionsCommand(IApplicationsCommand applicationsCommand, IApplicationsQuery applicationsQuery, IContenderListsCommand contenderListsCommand, IContenderListsQuery contenderListsQuery, IEmployerCreditsCommand employerCreditsCommand, IEmployerCreditsQuery employerCreditsQuery, IJobAdProcessingQuery jobAdProcessingQuery)
     : base(contenderListsCommand, contenderListsQuery)
 {
     _applicationsCommand    = applicationsCommand;
     _applicationsQuery      = applicationsQuery;
     _employerCreditsCommand = employerCreditsCommand;
     _employerCreditsQuery   = employerCreditsQuery;
     _jobAdProcessingQuery   = jobAdProcessingQuery;
 }
Пример #3
0
 public EmployerMemberViewsCommand(IEmployerViewsRepository repository, IEmployerCreditsCommand employerCreditsCommand, int dailyLimit, int weeklyLimit, int bulkDailyLimit, int bulkWeeklyLimit, int bulkUnlockDailyLimit, int bulkUnlockWeeklyLimit)
 {
     _repository             = repository;
     _employerCreditsCommand = employerCreditsCommand;
     _dailyLimit             = dailyLimit;
     _weeklyLimit            = weeklyLimit;
     _bulkDailyLimit         = bulkDailyLimit;
     _bulkWeeklyLimit        = bulkWeeklyLimit;
     _bulkUnlockDailyLimit   = bulkUnlockDailyLimit;
     _bulkUnlockWeeklyLimit  = bulkUnlockWeeklyLimit;
 }
Пример #4
0
 public SomeCreditsUsedCreditCreditInfo(bool verified, bool hasExpired, CreditAllocation creditAllocation, IEmployerAccountsCommand employerAccountsCommand, IOrganisationsCommand organisationsCommand, ICreditsQuery creditsQuery, IAllocationsCommand allocationsCommand, IEmployerCreditsCommand employerCreditsCommand, IEmployerMemberViewsQuery employerMemberViewsQuery)
     : base(verified, hasExpired, creditAllocation, employerAccountsCommand, organisationsCommand, creditsQuery, allocationsCommand)
 {
     _employerCreditsCommand   = employerCreditsCommand;
     _employerMemberViewsQuery = employerMemberViewsQuery;
 }