public EmployeeController(IHttpContextAccessor httpContextAccessor, IEmployeeDetailService employeeDetailService, IUserInfoService userInfoService) : base(httpContextAccessor) { _employeeDetailService = employeeDetailService; _userInfoService = userInfoService; }
public SectionController( ISectionService sectionService, IEmployeeDetailService employeeDetailService) { _sectionService = sectionService; _employeeDetailService = employeeDetailService; }
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 EmployeeViewModelService( IEmployeeService employeeService, IEmployeeDetailService employeeDetailService) { _employeeService = employeeService; _employeeDetailService = employeeDetailService; }
public BusStationController( IBusStationService busStationService, IEmployeeDetailService employeeDetailService) { _busStationService = busStationService; _employeeDetailService = employeeDetailService; }
public JobFunctionController( IJobFunctionService jobFunctionService, IEmployeeDetailService employeeDetailService) { _jobFunctionService = jobFunctionService; _employeeDetailService = employeeDetailService; }
public ShiftCalendarController( IShiftCalendarService shiftCalendarService, IEmployeeDetailService employeeDetailService) { _shiftCalendarService = shiftCalendarService; _employeeDetailService = employeeDetailService; }
public SkillController( ISkillService skillService, IEmployeeDetailService employeeDetailService) { _skillService = skillService; _employeeDetailService = employeeDetailService; }
public EmployeeController( IEmployeeService employeeService, IEmployeeDetailService employeeDetailService) { _employeeService = employeeService; _employeeDetailService = employeeDetailService; }
public AttendanceViewModelService( IEmployeeService employeeService, IEmployeeImageService employeeImageService, IAttendanceService attendanceService, IEmployeeDetailService employeeDetailService) { _employeeService = employeeService; _employeeImageService = employeeImageService; _attendanceService = attendanceService; _employeeDetailService = employeeDetailService; }
public ProfileViewModelService( IEmployeeDetailService employeeDetailService, IEmployeeStateService employeeStateService, IEmployeeService employeeService, IEmployeeAddressService employeeAddressService, IEmployeeImageService employeeImageService) { _employeeDetailService = employeeDetailService; _employeeStateService = employeeStateService; _employeeService = employeeService; _employeeAddressService = employeeAddressService; _employeeImageService = employeeImageService; }
public AttendanceController( IHttpContextAccessor httpContextAccessor, IEmployeeService employeeService, IEmployeeImageService employeeImageService, IEmployeeDetailService employeeDetailService, IAttendanceService attendanceService) { _httpContextAccessor = httpContextAccessor; _employeeService = employeeService; _employeeImageService = employeeImageService; _employeeDetailService = employeeDetailService; _attendanceService = attendanceService; }
public DashboardViewModelService( IAttendanceService attendanceService, IEmployeeService employeeService, IEmployeeStateService employeeStateService, IEmployeeDetailService employeeDetailService, IEmployeeImageService employeeImageService, IShiftService shiftService, IShiftCalendarService shiftCalendarService) { _attendanceService = attendanceService; _employeeService = employeeService; _employeeStateService = employeeStateService; _employeeDetailService = employeeDetailService; _employeeImageService = employeeImageService; _shiftService = shiftService; _shiftCalendarService = shiftCalendarService; }
public IncomingBirtdateViewComponent(IEmployeeDetailService _employeeDetailService) { employeeDetailService = _employeeDetailService; }
/// <summary> /// Constructor injecting an instance of <see cref="IEmployeeDetailService"/>. /// </summary> /// <param name="EmployeeDetailService">The injected service.</param> public EmployeeController(IEmployeeDetailService EmployeeDetailService) { _employeedetailService = EmployeeDetailService; }
public EmployeeDetailController(IEmployeeDetailService _service) { service = _service; }