예제 #1
0
 public TaxRulePeriodDomainService(IUnitOfWork unitOfWrok,
                                   ITaxRulePeriodRepository taxRulePeriodRepository,
                                   ITaxRuleRepository taxRuleRepository)
 {
     _unitOfWrok = unitOfWrok;
     _taxRulePeriodRepository = taxRulePeriodRepository;
     _taxRuleRepository       = taxRuleRepository;
 }
 public TaxRuleDomainService(IUnitOfWork unitOfWork, ITaxRuleRepository taxRuleRepository)
 {
     _unitOfWork        = unitOfWork;
     _taxRuleRepository = taxRuleRepository;
 }