All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tecacet.finance.service.currency.CurrencyExchangeService Maven / Gradle / Ivy

package com.tecacet.finance.service.currency;

import java.io.IOException;
import java.util.Date;

public interface CurrencyExchangeService {

    double getExchangeRate(String fromCurrencyCode, String toCurrencyCode, Date date) throws ExchangeRateException, IOException;

    double getCurrentExchangeRate(String fromCurrencyCode, String toCurrencyCode) throws ExchangeRateException, IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy