コード例 #1
0
ファイル: UnitTest1.cs プロジェクト: code-markowen/PotterKata
 private void ApplyDiscount(PercentageDiscount percentageDiscount)
 {
     _total -= percentageDiscount.Calculate(_total);
 }
コード例 #2
0
 private void ApplyDiscount(PercentageDiscount percentageDiscount)
 {
     _total -= percentageDiscount.Calculate(_total);
 }