예제 #1
0
 public EmployeeService(IContext context,
                        IEmployeeRepository repository,
                        ICountryRepository countryRepository,
                        IEthnicGroupRepository ethnicGroupRepository,
                        IReligionRepository religionRepository,
                        IEducationRepository educationRepository,
                        ISkillRepository skillRepository,
                        ISalaryHistoryRepository salaryHistoryrepository,
                        IEmployeeSkillRepository employeeSkillRepository
                        )
     : base(context, repository)
 {
     _repository                   = repository;
     this._countryRepository       = countryRepository;
     this._ethnicGroupRepository   = ethnicGroupRepository;
     this._religionRepository      = religionRepository;
     this._educationRepository     = educationRepository;
     this._skillRepository         = skillRepository;
     this._employeeSkillRepository = employeeSkillRepository;
     _context = context;
 }
예제 #2
0
 public SalaryHistoryService(IContext context, ISalaryHistoryRepository repository)
     : base(context, repository)
 {
     _repository = repository;
     _context    = context;
 }