コード例 #1
0
 public PeriodicTaxService(PeriodicTaxRepository periodicTaxRepository, TaxTypeRepository taxTypeRepository, IMapper mapper, PeriodicTaxesSummaryExportService periodicTaxesSummaryExportService)
 {
     _periodicTaxRepository             = periodicTaxRepository;
     _taxTypeRepository                 = taxTypeRepository;
     _periodicTaxesSummaryExportService = periodicTaxesSummaryExportService;
     _mapper = mapper;
 }
コード例 #2
0
 public TaxTypeService(TaxTypeRepository taxTypeRepository, IMapper mapper)
 {
     _taxTypeRepository = taxTypeRepository;
     _mapper            = mapper;
 }