Esempio n. 1
0
        public Amount ApplyTax(Tax tax)
        {
            var newAmount = this + CalculateFrom(tax);

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