38394041424344
@Override public Tax calculateTax(ProductType productType, Money net) { String desc = "sorry"; Money tax = net.multiplyBy(ratio); return new Tax(tax, desc); }
56575859606162
throw new IllegalArgumentException(productType + " not handled"); } Money tax = net.multiplyBy(ratio); return new Tax(tax, desc); }