示例#1
0
        public Amount ApplyTax(Tax tax)
        {
            var newAmount = this + CalculateFrom(tax);

            return(newAmount);
        }
示例#2
0
 public Price ApplyTax(Tax tax)
 => new Price(Amount.ApplyTax(tax), Currency);