using System.Threading.Tasks; namespace Microsoft.eShopWeb.ApplicationCore.Interfaces; public interface IExchangeRateClient { public Task<decimal> Latest(Currency baseCurrency, Currency toCurrency); } public enum Currency { USD, CAD }