public AzureUnitsService(
     IMapper <LearningAimModel, Models.LearningAimModel> mapper,
     IUnitIndexService unitIndex,
     IODataQueryService oDataQueryService,
     IAzureService azureService,
     ISearchTermFormattingService searchTermFormattingService)
     : base(mapper, unitIndex, oDataQueryService, azureService, searchTermFormattingService)
 {
 }
 public AzureTLevelService(
     ITelemetry telemetryClient,
     IMapper <FrameworkModel, Models.FrameworkModel> mapper,
     ITLevelIndexService tlevelIndex,
     IODataQueryService oDataQueryService,
     IAzureService azureService,
     ISearchTermFormattingService searchTermFormattingService)
     : base(telemetryClient, tlevelIndex, mapper, azureService, oDataQueryService, searchTermFormattingService)
 {
 }
Exemple #3
0
 public AzureLearningAimsService(
     IMapper <LearningAimModel, Models.LearningAimModel> mapper,
     ILearningDeliveryIndexService learningDeliveryIndex,
     IODataQueryService oDataQueryService,
     IAzureService azureService,
     ISearchTermFormattingService searchTermFormattingService)
     : base(searchTermFormattingService)
 {
     _mapper = mapper;
     _learningDeliveryIndex = learningDeliveryIndex;
     _oDataQueryService     = oDataQueryService;
     _azureService          = azureService;
 }
Exemple #4
0
 public AzureStandardService(
     IStandardIndexService standardIndexService,
     IMapper <StandardModel, Models.StandardModel> mapper,
     IAzureService azureService,
     IODataQueryService oDataQueryService,
     ISearchTermFormattingService searchTermFormattingService)
     : base(searchTermFormattingService)
 {
     _standardIndexService = standardIndexService;
     _mapper            = mapper;
     _azureService      = azureService;
     _oDataQueryService = oDataQueryService;
 }
 public AzureFrameworkService(
     ITelemetry telemetry,
     IFrameworkIndexService frameworkIndexService,
     IMapper <FrameworkModel, Models.FrameworkModel> mapper,
     IAzureService azureService,
     IODataQueryService oDataQueryService,
     ISearchTermFormattingService searchTermFormattingService)
     : base(searchTermFormattingService)
 {
     _telemetry             = telemetry;
     _frameworkIndexService = frameworkIndexService;
     _mapper            = mapper;
     _azureService      = azureService;
     _oDataQueryService = oDataQueryService;
 }