Beispiel #1
0
 public ApprenticeshipDetailsViewComponent(IApprenticeshipOrchestrator apprenticeshipOrchestrator)
 {
     _apprenticeshipOrchestrator = apprenticeshipOrchestrator;
 }
 public TrainingProviderSearchSummaryViewComponent(ITrainingProviderOrchestrator tpOrchestrator, IApprenticeshipOrchestrator apprenticeshipOrchestrator)
 {
     _tpOrchestrator             = tpOrchestrator;
     _apprenticeshipOrchestrator = apprenticeshipOrchestrator;
 }
 public TrainingProviderDetailsViewComponent(ITrainingProviderOrchestrator tpOrchestrator, IApprenticeshipOrchestrator apprenticeshipOrchestrator, ICacheStorageService cacheService, ILog logger)
 {
     _tpOrchestrator             = tpOrchestrator;
     _apprenticeshipOrchestrator = apprenticeshipOrchestrator;
     _logger = logger;
 }