Ejemplo n.º 1
0
 public ApplyApprenticeshipsController(
     IApprenticesService apprenticesService,
     IApplicationService applicationService,
     ILegalEntitiesService legalEntityService) : base(legalEntityService)
 {
     _apprenticesService = apprenticesService;
     _applicationService = applicationService;
 }
 public ApplyApprenticeshipsController(
     IApprenticesService apprenticesService,
     IApplicationService applicationService,
     ILegalEntitiesService legalEntityService,
     IOptions <ExternalLinksConfiguration> configuration) : base(legalEntityService)
 {
     _apprenticesService = apprenticesService;
     _applicationService = applicationService;
     _configuration      = configuration.Value;
 }