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 LoanRequestController(IEmploymentTypeService employmentTypeService, ILoanTypeService loanTypeService, ICurrencyService currencyService, UserManager <User> userManager, ILoanRequestService loanRequestService, IBankAccountService bankAccountService, IEmploymentService employmentService) { _employmentTypeService = employmentTypeService; _loanTypeService = loanTypeService; _userManager = userManager; _loanRequestService = loanRequestService; _bankAccountService = bankAccountService; _employmentService = employmentService; }
public LoanController(IEmploymentTypeService IEmploymentTypeService, ILoanTypeService ILoanTypeService, ICurrencyService ICurrencyService, ITestDataInitializerService _ITestDataInitializerService, IUnitOfWork unitOfWork, ILoanTypeService loanService) { ITestDataInitializerService = _ITestDataInitializerService; _ICurrencyService = ICurrencyService; _ILoanTypeService = ILoanTypeService; _IEmploymentTypeService = IEmploymentTypeService; _loanService = loanService; }
public EmployeeController(IEnumReferenceService enumReferenceService , IEmploymentStatusService employmentStatusService , IEmploymentTypeService employmentTypeService , ICountryService countryService , IEmployeeService employeeService) { this._employmentTypeService = employmentTypeService; this._employmentStatusService = employmentStatusService; this._countryService = countryService; this._enumReferenceService = enumReferenceService; this._employeeService = employeeService; }
public EmploymentTypeController(IEmploymentTypeService _service) { service = _service; }
public EmploymentTypeController(IEmploymentTypeService employmentTypeService) { _employmentTypeService = employmentTypeService; }
/// <summary> /// Ctor /// </summary> /// <param name="employmentTypeService"></param> public EmploymentTypesController(IEmploymentTypeService employmentTypeService) { this._employmentTypeService = employmentTypeService; }
public EmploymentTypesViewComponent(IEmploymentTypeService _employmentTypeService) { employmentTypeService = _employmentTypeService; }