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;
 }
Exemplo n.º 2
0
 public AdminController(IQuestionCategoryService iQuestionCategoryService
                        , IQuestionService iQuestionService
                        , ITestCategoryService iTestCategoryService
                        , ITestService iTestService
                        , IDocumentInformationService iDocumentInformationService
                        , IRoleService iRoleService
                        , IUserService iUserService
                        , ICompanyService iCompanyService
                        , ICompanyBranchService iCompanyBranchService
                        , IUtilityService iUtilityService
                        , ITestTakenService iTestTakenService
                        )
 {
     _iQuestionCategoryService    = iQuestionCategoryService;
     _iQuestionService            = iQuestionService;
     _iTestCategoryService        = iTestCategoryService;
     _iTestService                = iTestService;
     _iDocumentInformationService = iDocumentInformationService;
     _iRoleService                = iRoleService;
     _iUserService                = iUserService;
     _iCompanyService             = iCompanyService;
     _iCompanyBranchService       = iCompanyBranchService;
     _iUtilityService             = iUtilityService;
     _iTestTakenService           = iTestTakenService;
 }
Exemplo n.º 3
0
 public SettingsController(ISystemEducationService _service, IEmployeeService _employeeservice, ICompanyService _companyService, ICompanyBranchService _companyBranchService, ICompanyDepartmentService _companyDepartmentService)
 {
     service                  = _service;
     employeeservice          = _employeeservice;
     companyService           = _companyService;
     companyBranchService     = _companyBranchService;
     companyDepartmentService = _companyDepartmentService;
 }
Exemplo n.º 4
0
 public CompaniesController(ICompanyBranchService _companyBranchService, ICompanyDepartmentService _companyDepartmentService)
 {
     companyBranchService     = _companyBranchService;
     companyDepartmentService = _companyDepartmentService;
 }
 public CompanyBranchesController(ICompanyBranchService _service)
 {
     service = _service;
 }