Esempio n. 1
0
 public CompanyEmployeeManageController(ICompanyEmployeeService companyEmployeeService,
                                        IEmployeeWorkHistoryService employeeWorkHistoryService,
                                        ICategoryService categoryService, IWorkContext workContext, ICompanyService companyService,
                                        IEmployeeBaseInfoService employeeBaseInfoService) : base()
 {
     this._companyEmployeeService     = companyEmployeeService;
     this._employeeWorkHistoryService = employeeWorkHistoryService;
     this._categoryService            = categoryService;
     this._workContext             = workContext;
     this._companyService          = companyService;
     this._employeeBaseInfoService = employeeBaseInfoService;
 }
Esempio n. 2
0
        //private MembershipUser _currentUser;
        #endregion

        #region Ctor

        public CompanyEmployeeService(ICompanyEmployeeRepository companyEmployeeRepository, ICategoryRepository categoryRepository,
                                      IWorkContext workContext, IEmployeeBaseInfoRepository employeeBaseInfoRepository, IImportExportService importExportService,
                                      ICompanyService companyService, IEmployeeWorkHistoryService employeeWorkHistoryService)
        {
            _companyEmployeeRepository  = companyEmployeeRepository;
            _employeeBaseInfoRepository = employeeBaseInfoRepository;
            _categoryRepository         = categoryRepository;
            _workContext                = workContext;
            _importExportService        = importExportService;
            _companyService             = companyService;
            _employeeWorkHistoryService = employeeWorkHistoryService;
        }