Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

TaxRateCalculatedEvent.cs

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
}