Exemple #1
0
 public EmployeeService(IEmployeeRepository employeeRep, IPeriodRepository periodRep, IPMSAdminService converter,
                        IJobPositionRepository jobPositionRep, IPeriodManagerService periodChecker, IJobIndexPointRepository jobIndexPointRepository, ICalculationRepository calculationRepository)
 {
     this.employeeRep             = employeeRep;
     this.periodRep               = periodRep;
     this.converter               = converter;
     this.jobPositionRep          = jobPositionRep;
     this.periodChecker           = periodChecker;
     this.jobIndexPointRepository = jobIndexPointRepository;
     this.calculationRepository   = calculationRepository;
 }
Exemple #2
0
        public JobIndexService(

            IJobIndexRepository jobIndexRep,
            IPeriodRepository periodRep,
            IPMSAdminService ipmsAdminService,
            IPeriodManagerService periodChecker
            )
        {
            this.periodRep       = periodRep;
            this.pmsAdminService = ipmsAdminService;
            this.periodChecker   = periodChecker;
            this.jobIndexRep     = jobIndexRep;
        }
Exemple #3
0
        public UnitIndexService(

            IUnitIndexRepository unitIndexRep,
            IPeriodRepository periodRep,
            IPMSAdminService ipmsAdminService,
            IPeriodManagerService periodChecker
            )
        {
            this.periodRep       = periodRep;
            this.pmsAdminService = ipmsAdminService;
            this.periodChecker   = periodChecker;
            this.unitIndexRep    = unitIndexRep;
        }
Exemple #4
0
 public UnitService(
     IUnitRepository unitRep,
     IPeriodRepository periodRep,
     IUnitIndexRepository unitIndexRep
     , IPMSAdminService ipmsAdminService,
     IPeriodManagerService periodChecker,
     IUnitInquiryConfiguratorService configuratorService,
     IEmployeeRepository employeeRepository)
 {
     this.periodRep        = periodRep;
     this.ipmsAdminService = ipmsAdminService;
     this.unitRep          = unitRep;
     this.unitIndexRep     = unitIndexRep;
     this.periodChecker    = periodChecker;
     _configuratorService  = configuratorService;
     _employeeRepository   = employeeRepository;
 }
Exemple #5
0
 public JobPositionService(IJobPositionRepository jobPositionRep,
                           IPeriodRepository periodRep,
                           IJobRepository jobRepository,
                           IUnitRepository unitRep,
                           IPMSAdminService pmsAdminService,
                           IJobPositionInquiryConfiguratorService configuratorService,
                           IEmployeeRepository employeeRepository,
                           IPeriodManagerService periodChecker)
 {
     this.periodRep           = periodRep;
     this.jobRepository       = jobRepository;
     this.unitRep             = unitRep;
     this.pmsAdminService     = pmsAdminService;
     this.configuratorService = configuratorService;
     this.employeeRepository  = employeeRepository;
     this.periodChecker       = periodChecker;
     this.jobPositionRep      = jobPositionRep;
 }
 public EmployeeServiceFacade(IEmployeeRepository employeeRep,
                              IMapper <Employee, EmployeeDTOWithActions> employeeDTOWithActionsMapper,
                              IMapper <Employee, EmployeeDTO> employeeDTOMapper,
                              IEmployeeService employeeService,
                              IPeriodRepository periodRep,
                              IJobPositionRepository jobPositionRep,
                              IJobRepository jobRep,
                              IPMSAdminService converter)
 {
     this.employeeRep = employeeRep;
     this.employeeDTOWithActionsMapper = employeeDTOWithActionsMapper;
     this.employeeDTOMapper            = employeeDTOMapper;
     this.employeeService = employeeService;
     this.periodRep       = periodRep;
     this.jobPositionRep  = jobPositionRep;
     this.jobRep          = jobRep;
     this.converter       = converter;
 }
 public CalculationDataProvider(IEmployeeRepository empRep, IPMSAdminService pmsAdminService, IJobIndexPointRepository jipRep)
 {
     this.empRep          = empRep;
     this.pmsAdminService = pmsAdminService;
     this.jipRep          = jipRep;
 }
Exemple #8
0
 public AuthController(IPMSAdminService service) => _service = service;
Exemple #9
0
 public UsersController(IPMSAdminService service) => _service = service;