コード例 #1
0
ファイル: Amount.cs プロジェクト: adamm931/Price-Calculator
        public Amount ApplyTax(Tax tax)
        {
            var newAmount = this + CalculateFrom(tax);

            return(newAmount);
        }
コード例 #2
0
ファイル: Price.cs プロジェクト: adamm931/Price-Calculator
 public Price ApplyTax(Tax tax)
 => new Price(Amount.ApplyTax(tax), Currency);