public StandardsPopulationService(
     ISearchServiceClient searchServiceClient,
     IPopulationConfiguration populationConfiguration,
     ILarsContextFactory contextFactory,
     IStandardSectorCodeService standardSectorCodeService,
     ICommonComponentLookupService commonComponentLookupService,
     IComponentTypeService componentTypeService,
     ICommonComponentService commonComponentService,
     IRelatedLearningAimsService relatedLearningAimsService)
     : base(searchServiceClient, populationConfiguration)
 {
     _contextFactory               = contextFactory;
     _standardSectorCodeService    = standardSectorCodeService;
     _commonComponentLookupService = commonComponentLookupService;
     _componentTypeService         = componentTypeService;
     _commonComponentService       = commonComponentService;
     _relatedLearningAimsService   = relatedLearningAimsService;
 }
 public FrameworkPopulationService(
     ISearchServiceClient searchServiceClient,
     IPopulationConfiguration populationConfiguration,
     ILarsContextFactory contextFactory,
     IIssuingAuthorityService issuingAuthorityService,
     IComponentTypeService componentTypeService,
     ICommonComponentLookupService commonComponentLookupService,
     ICommonComponentService commonComponentService,
     IRelatedLearningAimsService relatedLearningAimsService)
     : base(searchServiceClient, populationConfiguration)
 {
     _contextFactory               = contextFactory;
     _issuingAuthorityService      = issuingAuthorityService;
     _componentTypeService         = componentTypeService;
     _commonComponentLookupService = commonComponentLookupService;
     _commonComponentService       = commonComponentService;
     _relatedLearningAimsService   = relatedLearningAimsService;
 }
示例#3
0
 public TLevelPopulationService(
     ISearchServiceClient searchServiceClient,
     IPopulationConfiguration populationConfiguration,
     ILarsContextFactory contextFactory,
     IIssuingAuthorityService issuingAuthorityService,
     IComponentTypeService componentTypeService,
     ICommonComponentLookupService commonComponentLookupService,
     ICommonComponentService commonComponentService,
     IRelatedLearningAimsService relatedLearningAimsService)
     : base(
         searchServiceClient,
         populationConfiguration,
         contextFactory,
         issuingAuthorityService,
         componentTypeService,
         commonComponentLookupService,
         commonComponentService,
         relatedLearningAimsService)
 {
 }