Beispiel #1
0
 private double _calcTaxVeryLow(Order order)
 {
     return(order.GetTotalAmount() * 0.1);
 }
Beispiel #2
0
 static private double _calcTaxTheIsraeliWay(Order order)
 {
     return(order.GetTotalAmount() * 0.17);
 }