public TrainingProviderSearchSummaryViewComponent(ITrainingProviderOrchestrator tpOrchestrator, IApprenticeshipOrchestrator apprenticeshipOrchestrator)
 {
     _tpOrchestrator             = tpOrchestrator;
     _apprenticeshipOrchestrator = apprenticeshipOrchestrator;
 }
 public ClosestLocationsViewComponent(ITrainingProviderOrchestrator trainingProviderOrchestrator)
 {
     _trainingProviderOrchestrator = trainingProviderOrchestrator;
 }
Beispiel #3
0
 public TrainingProviderSearchResultsViewComponent(ITrainingProviderOrchestrator tpOrchestrator)
 {
     _tpOrchestrator = tpOrchestrator;
 }
Beispiel #4
0
 public TrainingProviderSearchFilterViewComponent(ITrainingProviderOrchestrator tpOrchestrator)
 {
     _tpOrchestrator = tpOrchestrator;
 }
 public TrainingProviderDetailsViewComponent(ITrainingProviderOrchestrator tpOrchestrator, IApprenticeshipOrchestrator apprenticeshipOrchestrator, ICacheStorageService cacheService, ILog logger)
 {
     _tpOrchestrator             = tpOrchestrator;
     _apprenticeshipOrchestrator = apprenticeshipOrchestrator;
     _logger = logger;
 }