package [Link].
converter;
public class CurrencyConverter {
private final CurrencyRates rates;
public CurrencyConverter(CurrencyRates rates) {
[Link] = rates;
}
public double convert(String from, String to, double amount) {
double fromRate = [Link](from);
double toRate = [Link](to);
return (amount / fromRate) * toRate;
}
}