Exemplo n.º 1
0
 public EmployeeController(IEmployeeService _service, IEmployeeDetailService _employeeDetailService, IEmployeeOtherInfoService _employeeOtherInfoService,
                           IBankAccountTypeService _bankAccountTypeService, IAccessTypeService _accessTypeService, IBloodGroupService _bloodGroupService, ICityService _cityService,
                           IContractTypeService _contractType, ICountryService _countryService, IDisabilitySituationService _disabilitySituationService, IEducationLevelService _educationLevelService,
                           IEducationStatusService _educationStatusService, IEmploymentTypeService _employmentTypeService, IGenderService _genderService,
                           IMaritalStatusService _maritalStatusService, IPositionService _positionService, ICompanyService _companyService, ICompanyBranchService _companyBranchService, ICompanyDepartmentService _companyDepartmentService,
                           IEmployeePositionService _employeePositionService
                           )
 {
     service = _service;
     employeeDetailService    = _employeeDetailService;
     employeeOtherInfoService = _employeeOtherInfoService;
     employeePositionService  = _employeePositionService;
     bankAccountTypeService   = _bankAccountTypeService;
     accessTypeService        = _accessTypeService;
     bloodGroupService        = _bloodGroupService;
     cityService                = _cityService;
     contractType               = _contractType;
     countryService             = _countryService;
     disabilitySituationService = _disabilitySituationService;
     educationLevelService      = _educationLevelService;
     educationStatusService     = _educationStatusService;
     employmentTypeService      = _employmentTypeService;
     genderService              = _genderService;
     maritalStatusService       = _maritalStatusService;
     positionService            = _positionService;
     companyService             = _companyService;
     companyBranchService       = _companyBranchService;
     companyDepartmentService   = _companyDepartmentService;
 }
 public EmployeePositionAssignmentController(IEmployeePositionAssignmentService employeePositionAssignmentService,
                                             IEmployeeService employeeService,
                                             IEmployeePositionService employeePositionService)
 {
     _employeePositionAssignmentService = employeePositionAssignmentService;
     _employeeService         = employeeService;
     _employeePositionService = employeePositionService;
 }
 public EmployeePositionAppService(IEmployeePositionService employeePositionService)
 {
     _employeePositionService = employeePositionService;
 }
Exemplo n.º 4
0
 public EmployeePositionController(IEmployeePositionService employeePositionService)
 {
     _employeePositionService = employeePositionService;
 }
 public EmployeePositionController(IEmployeePositionService employeePositionService, ILogger <EmployeePositionController> logger)
 {
     _employeePositionService = employeePositionService;
     _logger = logger;
 }
Exemplo n.º 6
0
 public PositionService(IPositionRepository positionRepository, IEmployeePositionService employeePositionService, IMapper mapper)
 {
     _positionRepository      = positionRepository;
     _employeePositionService = employeePositionService;
     _mapper = mapper;
 }
Exemplo n.º 7
0
 public PositionController(IPositionService _service, IEmployeePositionService _employeePositionService)
 {
     service = _service;
 }