28 lines
1.0 KiB
C#
28 lines
1.0 KiB
C#
using Nop.Core.Domain.Customers;
|
|
using Nop.Services.Plugins;
|
|
|
|
namespace Nop.Services.Directory;
|
|
|
|
/// <summary>
|
|
/// Represents an exchange rate plugin manager
|
|
/// </summary>
|
|
public partial interface IExchangeRatePluginManager : IPluginManager<IExchangeRateProvider>
|
|
{
|
|
/// <summary>
|
|
/// Load primary active exchange rate provider
|
|
/// </summary>
|
|
/// <param name="customer">Filter by customer; pass null to load all plugins</param>
|
|
/// <param name="storeId">Filter by store; pass 0 to load all plugins</param>
|
|
/// <returns>
|
|
/// A task that represents the asynchronous operation
|
|
/// The task result contains the exchange rate provider
|
|
/// </returns>
|
|
Task<IExchangeRateProvider> LoadPrimaryPluginAsync(Customer customer = null, int storeId = 0);
|
|
|
|
/// <summary>
|
|
/// Check whether the passed exchange rate provider is active
|
|
/// </summary>
|
|
/// <param name="exchangeRateProvider">Exchange rate provider to check</param>
|
|
/// <returns>Result</returns>
|
|
bool IsPluginActive(IExchangeRateProvider exchangeRateProvider);
|
|
} |