1 32 33 package com.knowgate.hipergate.locale; 34 35 import java.math.BigDecimal ; 36 37 42 public interface ITaxCalculator { 43 44 53 BigDecimal getTax(BigDecimal oBasePrice, String sTaxZone, String sItemType) throws NullPointerException ,IllegalArgumentException ; 54 55 63 BigDecimal getTaxPct(String sTaxZone, String sItemType) throws NullPointerException ,IllegalArgumentException ; 64 65 } 66 | Popular Tags |