public LearningAimIndexPopulationService(
     ISearchServiceClient searchServiceClient,
     IPopulationConfiguration populationConfiguration,
     ILarsContextFactory contextFactory,
     IAcademicYearService academicYearService,
     IIssuingAuthorityService issuingAuthorityService,
     IComponentTypeService componentTypeService,
     IFundingService fundingService,
     IValidityService validityService,
     ILearningDeliveryCategoryService learningDeliveryCategoryService,
     IFrameworkAimService frameworkAimService,
     IEntitlementCategoryService entitlementCategoryService,
     IAwardOrgService awardOrgService)
     : base(searchServiceClient, populationConfiguration)
 {
     _contextFactory                  = contextFactory;
     _academicYearService             = academicYearService;
     _issuingAuthorityService         = issuingAuthorityService;
     _componentTypeService            = componentTypeService;
     _fundingService                  = fundingService;
     _validityService                 = validityService;
     _learningDeliveryCategoryService = learningDeliveryCategoryService;
     _frameworkAimService             = frameworkAimService;
     _entitlementCategoryService      = entitlementCategoryService;
     _awardOrgService                 = awardOrgService;
 }
 public DowloadDataProviderService(
     IPopulationConfiguration configuration,
     ILarsContextFactory contextFactory)
 {
     _configuration  = configuration;
     _contextFactory = contextFactory;
 }
 public UnitPopulationService(
     ISearchServiceClient searchServiceClient,
     IPopulationConfiguration populationConfiguration,
     ILarsContextFactory contextFactory,
     IAcademicYearService academicYearService,
     IIssuingAuthorityService issuingAuthorityService,
     IComponentTypeService componentTypeService,
     IFundingService fundingService,
     IValidityService validityService,
     ILearningDeliveryCategoryService learningDeliveryCategoryService,
     IFrameworkAimService frameworkAimService,
     IEntitlementCategoryService entitlementCategoryService,
     IAwardOrgService awardOrgService)
     : base(
         searchServiceClient,
         populationConfiguration,
         contextFactory,
         academicYearService,
         issuingAuthorityService,
         componentTypeService,
         fundingService,
         validityService,
         learningDeliveryCategoryService,
         frameworkAimService,
         entitlementCategoryService,
         awardOrgService)
 {
 }
 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;
 }
Beispiel #6
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)
 {
 }
Beispiel #7
0
 public LookupIndexPopulationService(
     ISearchServiceClient searchServiceClient,
     IPopulationConfiguration populationConfiguration,
     ILarsContextFactory contextFactory,
     IAcademicYearService academicYearService,
     ISortingService <IssuingAuthorityLookupModel> issuingAuthoritySortingService,
     ISortingService <NotionalNVQLevel2LookupModel> levelSortingService,
     ISortingService <FrameworkTypeLookupModel> tLevelTypeSortingService,
     ISortingService <SectorSubjectAreaTier1LookupModel> sectorSubjectAreaTier1SortingService,
     ISortingService <StandardSectorLookupModel> standardSectorCodeSortingService,
     ISortingService <AwardingBodyLookupModel> awardingBodySortingService)
     : base(searchServiceClient, populationConfiguration)
 {
     _contextFactory                       = contextFactory;
     _academicYearService                  = academicYearService;
     _issuingAuthoritySortingService       = issuingAuthoritySortingService;
     _levelSortingService                  = levelSortingService;
     _tLevelTypeSortingService             = tLevelTypeSortingService;
     _sectorSubjectAreaTier1SortingService = sectorSubjectAreaTier1SortingService;
     _standardSectorCodeSortingService     = standardSectorCodeSortingService;
     _awardingBodySortingService           = awardingBodySortingService;
 }