コード例 #1
0
 public AddOrUpdateTaxCommandHandler(IMunicipalitiesRepository municipalityRepository,
                                     IYearlyTaxRepository yearlyTaxRepository,
                                     IMonthlyTaxRepository monthlyTaxRepository,
                                     IDailyTaxRepository dailyTaxRepository
                                     )
 {
     _municipalityRepository = municipalityRepository;
     _yearlyTaxRepository    = yearlyTaxRepository;
     _monthlyTaxRepository   = monthlyTaxRepository;
     _dailyTaxRepository     = dailyTaxRepository;
 }
コード例 #2
0
ファイル: TaxQuery.cs プロジェクト: Nelavoy/TaxManagement
 public TaxQueryHandler(IMunicipalitiesRepository municipalityRepository,
                        IYearlyTaxRepository yearlyTaxRepository,
                        IMonthlyTaxRepository monthlyTaxRepository,
                        IDailyTaxRepository dailyTaxRepository
                        )
 {
     _municipalityRepository = municipalityRepository;
     _yearlyTaxRepository    = yearlyTaxRepository;
     _monthlyTaxRepository   = monthlyTaxRepository;
     _dailyTaxRepository     = dailyTaxRepository;
 }