Exemplo n.º 1
0
    public double ComputeCustomsTax(string originCountry, double tobaccoValue, double regularValue)
    { // UGLY API we CANNOT change
        ITaxProvider pece = SelectTaxProvider(originCountry);

        return(pece.Get(tobaccoValue, regularValue));
    }