29 lines
596 B
C#
29 lines
596 B
C#
namespace Nop.Services.Tax.Events;
|
|
|
|
/// <summary>
|
|
/// Represents an event that raised when tax rate is calculated
|
|
/// </summary>
|
|
public partial class TaxRateCalculatedEvent
|
|
{
|
|
#region Ctor
|
|
|
|
/// <summary>
|
|
/// Ctor
|
|
/// </summary>
|
|
/// <param name="taxRateResult">Tax rate result</param>
|
|
public TaxRateCalculatedEvent(TaxRateResult taxRateResult)
|
|
{
|
|
TaxRateResult = taxRateResult;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Properties
|
|
|
|
/// <summary>
|
|
/// Gets the tax rate result
|
|
/// </summary>
|
|
public TaxRateResult TaxRateResult { get; }
|
|
|
|
#endregion
|
|
} |