Try your search with a different keyword or use * as a wildcard.
namespace Nop.Services.Tax.Events;
///
/// Represents an event that raised when tax rate is calculated
///
public partial class TaxRateCalculatedEvent
{
#region Ctor
///
/// Ctor
///
/// Tax rate result
public TaxRateCalculatedEvent(TaxRateResult taxRateResult)
{
TaxRateResult = taxRateResult;
}
#endregion
#region Properties
///
/// Gets the tax rate result
///
public TaxRateResult TaxRateResult { get; }
#endregion
}