public AzureUnitsService(
     IMapper <LearningAimModel, Models.LearningAimModel> mapper,
     IUnitIndexService unitIndex,
     IODataQueryService oDataQueryService,
     IAzureService azureService,
     ISearchTermFormattingService searchTermFormattingService)
     : base(mapper, unitIndex, oDataQueryService, azureService, searchTermFormattingService)
 {
 }
Exemplo n.º 2
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;
 }
Exemplo n.º 3
0
 public PeriodUnitIndexFacadeService(
     IUnitIndexService UnitIndexService,
     IMapper <AbstractUnitIndex, AbstractUnitIndexInPeriodDTO> UnitIndexMapper,
     IMapper <AbstractUnitIndex, AbstractUnitIndexInPeriodDTOWithActions> UnitIndexWithActionsMapper,
     IMapper <SharedUnitIndexCustomField, AbstractCustomFieldDescriptionDTO> abstractCustomFieldDtoMapper,
     IUnitIndexRepository UnitIndexRep
     )
 {
     this.UnitIndexService             = UnitIndexService;
     this.UnitIndexMapper              = UnitIndexMapper;
     this.UnitIndexWithActionsMapper   = UnitIndexWithActionsMapper;
     this.abstractCustomFieldDtoMapper = abstractCustomFieldDtoMapper;
     this.UnitIndexRep = UnitIndexRep;
 }
Exemplo n.º 4
0
 public UnitIndexFacadeService(
     IUnitIndexService unitIndexService,
     ICustomFieldRepository customFieldRep,
     IMapper <AbstractUnitIndex, AbstractIndex> unitIndexMapper,
     IMapper <AbstractUnitIndex, AbstractUnitIndexDTOWithActions> unitIndexWithActionsMapper,
     IMapper <CustomFieldType, CustomFieldDTO> customFieldDtoMapper,
     IUnitIndexRepository unitIndexRep
     )
 {
     this.unitIndexService           = unitIndexService;
     this.customFieldRep             = customFieldRep;
     this.unitIndexMapper            = unitIndexMapper;
     this.unitIndexWithActionsMapper = unitIndexWithActionsMapper;
     this.customFieldDtoMapper       = customFieldDtoMapper;
     this.unitIndexRep = unitIndexRep;
 }
Exemplo n.º 5
0
 public PeriodUnitServiceFacade(IUnitService unitService,
                                IMapper <Unit, UnitInPeriodAssignmentDTO> unitAssignmentMapper,
                                IFilterMapper <Unit, UnitInPeriodDTOWithActions> unitInPeriodDTOWithActionsMapper,
                                IFilterMapper <Unit, UnitInPeriodDTO> unitInPeriodDTOMapper,
                                IMapper <UnitCustomField, CustomFieldDTO> unitCustomFieldMapper,
                                IUnitRepository unitRep,
                                IUnitIndexService unitIndexService,
                                IEmployeeRepository employeeRepository,
                                IUnitIndexRepository unitIndexRepository)
 {
     this.unitService                      = unitService;
     this.unitAssignmentMapper             = unitAssignmentMapper;
     this.unitInPeriodDTOWithActionsMapper = unitInPeriodDTOWithActionsMapper;
     this.unitInPeriodDTOMapper            = unitInPeriodDTOMapper;
     this.unitRep = unitRep;
     this.unitCustomFieldMapper = unitCustomFieldMapper;
     this.unitIndexService      = unitIndexService;
     _employeeRepository        = employeeRepository;
     _unitIndexRepository       = unitIndexRepository;
 }