public AddOrUpdateTaxCommandHandler(IMunicipalitiesRepository municipalityRepository, IYearlyTaxRepository yearlyTaxRepository, IMonthlyTaxRepository monthlyTaxRepository, IDailyTaxRepository dailyTaxRepository ) { _municipalityRepository = municipalityRepository; _yearlyTaxRepository = yearlyTaxRepository; _monthlyTaxRepository = monthlyTaxRepository; _dailyTaxRepository = dailyTaxRepository; }
public TaxQueryHandler(IMunicipalitiesRepository municipalityRepository, IYearlyTaxRepository yearlyTaxRepository, IMonthlyTaxRepository monthlyTaxRepository, IDailyTaxRepository dailyTaxRepository ) { _municipalityRepository = municipalityRepository; _yearlyTaxRepository = yearlyTaxRepository; _monthlyTaxRepository = monthlyTaxRepository; _dailyTaxRepository = dailyTaxRepository; }