Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Domain.Directory;
using Nop.Services.Plugins;
namespace Nop.Services.Directory;
///
/// Exchange rate provider interface
///
public partial interface IExchangeRateProvider : IPlugin
{
///
/// Gets currency live rates
///
/// Exchange rate currency code
///
/// A task that represents the asynchronous operation
/// The task result contains the exchange rates
///
Task> GetCurrencyLiveRatesAsync(string exchangeRateCurrencyCode);
}