Esempio n. 1
0
 public PMSAdminService(IUnitService unitService, IJobService jobService,
                        ICustomFieldService customFieldService, IJobPositionService jobPositionService,
                        IJobIndexService jobIndexService,
                        IUnitIndexService unitIndexService
                        )
 {
     this.unitService        = unitService;
     this.jobService         = jobService;
     this.jobIndexService    = jobIndexService;
     this.customFieldService = customFieldService;
     this.jobPositionService = jobPositionService;
     this.unitIndexService   = unitIndexService;
 }
Esempio n. 2
0
 public PeriodJobIndexFacadeService(
     IJobIndexService jobIndexService,
     IMapper <AbstractJobIndex, AbstractIndexInPeriodDTO> jobIndexMapper,
     IMapper <AbstractJobIndex, AbstractIndexInPeriodDTOWithActions> jobIndexWithActionsMapper,
     IMapper <SharedJobIndexCustomField, AbstractCustomFieldDescriptionDTO> abstractCustomFieldDtoMapper,
     IJobIndexRepository jobIndexRep
     )
 {
     this.jobIndexService              = jobIndexService;
     this.jobIndexMapper               = jobIndexMapper;
     this.jobIndexWithActionsMapper    = jobIndexWithActionsMapper;
     this.abstractCustomFieldDtoMapper = abstractCustomFieldDtoMapper;
     this.jobIndexRep = jobIndexRep;
 }
Esempio n. 3
0
 public JobIndexFacadeService(
     IJobIndexService jobIndexService,
     ICustomFieldRepository customFieldRep,
     IMapper <AbstractJobIndex, AbstractIndex> jobIndexMapper,
     IMapper <AbstractJobIndex, AbstractJobIndexDTOWithActions> jobIndexWithActionsMapper,
     IMapper <CustomFieldType, CustomFieldDTO> customFieldDtoMapper,
     IJobIndexRepository jobIndexRep
     )
 {
     this.jobIndexService           = jobIndexService;
     this.customFieldRep            = customFieldRep;
     this.jobIndexMapper            = jobIndexMapper;
     this.jobIndexWithActionsMapper = jobIndexWithActionsMapper;
     this.customFieldDtoMapper      = customFieldDtoMapper;
     this.jobIndexRep = jobIndexRep;
 }
Esempio n. 4
0
 public PeriodJobServiceFacade(IJobService jobService,
                               IJobIndexService jobIndexService,
                               IFilterMapper <Job, JobInPeriodDTOWithActions> jobInPeriodDTOWithActionsMapper,
                               IFilterMapper <Job, JobInPeriodDTO> jobInPeriodDTOMapper,
                               IMapper <JobCustomField, CustomFieldDTO> jobCustomFieldMapper,
                               IMapper <AbstractJobIndex, AbstractIndexInPeriodDTO> jobIndexInPeriodMapper,
                               IJobRepository jobRep,
                               IJobPositionRepository jobPositionRep
                               )
 {
     this.jobService      = jobService;
     this.jobIndexService = jobIndexService;
     this.jobInPeriodDTOWithActionsMapper = jobInPeriodDTOWithActionsMapper;
     this.jobInPeriodDTOMapper            = jobInPeriodDTOMapper;
     this.jobCustomFieldMapper            = jobCustomFieldMapper;
     this.jobIndexInPeriodMapper          = jobIndexInPeriodMapper;
     this.jobRep         = jobRep;
     this.jobPositionRep = jobPositionRep;
 }