Exemplo n.º 1
0
 public ConfigurationService(ICountyRepository countyRepository,
                             ICurrencyRepository currencyRepository,
                             ISalaryPayFrequencyRespository payFrequencyRespository,
                             ISalaryComponentRepository salaryComponentRepository)
 {
     _countryRepository         = countyRepository;
     _currencyRepository        = currencyRepository;
     _payFrequencyRespository   = payFrequencyRespository;
     _salaryComponentRepository = salaryComponentRepository;
 }
Exemplo n.º 2
0
 public SalaryComponentsController(ISalaryComponentRepository salaryComponentRepository,
                                   IUnitOfWork unitOfWork)
 {
     _salaryComponentRepository = salaryComponentRepository;
     _unitOfWork = unitOfWork;
 }