Example #1
0
 public DraftApplicationForExpiredVacancyHousekeeper(
     ILogService logService,
     IConfigurationService configurationService,
     IApprenticeshipApplicationReadRepository apprenticeshipApplicationReadRepository,
     IHardDeleteApplicationStrategy hardDeleteApplicationStrategy)
 {
     _logService           = logService;
     _configurationService = configurationService;
     _apprenticeshipApplicationReadRepository = apprenticeshipApplicationReadRepository;
     _hardDeleteApplicationStrategy           = hardDeleteApplicationStrategy;
 }
 public SubmittedApplicationHousekeeper(
     ILogService logService,
     IConfigurationService configurationService,
     IApprenticeshipApplicationReadRepository apprenticeshipApplicationReadRepository,
     ITraineeshipApplicationReadRepository traineeshipApplicationReadRepository,
     IHardDeleteApplicationStrategy hardDeleteApplicationStrategy)
 {
     _logService           = logService;
     _configurationService = configurationService;
     _apprenticeshipApplicationReadRepository = apprenticeshipApplicationReadRepository;
     _traineeshipApplicationReadRepository    = traineeshipApplicationReadRepository;
     _hardDeleteApplicationStrategy           = hardDeleteApplicationStrategy;
 }