summaryrefslogtreecommitdiffstats
path: root/sandbox/lresende/sca/samples/store-appengine-webapp/src/services/CurrencyConverter.java
blob: 36d64781da99eeef02f22f72dab50e4920678572 (plain)
1
2
3
4
5
6
7
8
9
package services;

public interface CurrencyConverter {
    public double getConversion(String fromCurrenycCode, 
                                String toCurrencyCode, 
                                double amount);

    public String getCurrencySymbol(String currencyCode);
}