public PeriodicTaxService(PeriodicTaxRepository periodicTaxRepository, TaxTypeRepository taxTypeRepository, IMapper mapper, PeriodicTaxesSummaryExportService periodicTaxesSummaryExportService) { _periodicTaxRepository = periodicTaxRepository; _taxTypeRepository = taxTypeRepository; _periodicTaxesSummaryExportService = periodicTaxesSummaryExportService; _mapper = mapper; }
public TaxTypeService(TaxTypeRepository taxTypeRepository, IMapper mapper) { _taxTypeRepository = taxTypeRepository; _mapper = mapper; }