Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Domain.Directory;
using Nop.Services.Directory;
using Nop.Services.Plugins;
namespace Nop.Tests.Nop.Services.Tests.Directory;
public class TestExchangeRateProvider : BasePlugin, IExchangeRateProvider
{
///
/// Gets currency live rates
///
/// Exchange rate currency code
/// Exchange rates
public Task> GetCurrencyLiveRatesAsync(string exchangeRateCurrencyCode)
{
return Task.FromResult>(new List());
}
}