using Nop.Services.Plugins; namespace Nop.Services.Tax; /// /// Provides an interface for creating tax providers /// public partial interface ITaxProvider : IPlugin { /// /// Gets tax rate /// /// Tax rate request /// /// A task that represents the asynchronous operation /// The task result contains the ax /// Task GetTaxRateAsync(TaxRateRequest taxRateRequest); /// /// Gets tax total /// /// Tax total request /// /// A task that represents the asynchronous operation /// The task result contains the ax total /// Task GetTaxTotalAsync(TaxTotalRequest taxTotalRequest); }