コード例 #1
0
ファイル: DiscountBase.cs プロジェクト: BiggT76/DiscountDemo
 public decimal Calculate(decimal orderTotal, decimal discountAmount)
 {
     return(orderTotal - discountAmount.ApplyBankersRounding());
 }