TaxRate
public class TaxRate : ValueObjectBase
Inheritance
- class ValueObjectBase
Namespace
Constructors
TaxRate
public TaxRate(decimal value)
Fields
ZeroValue
public static TaxRate ZeroValue;
Properties
Value
public decimal Value { get; }
Methods
DeepClone
public override object DeepClone()
ToString
public override string ToString()
Operators
TaxRate Addition (1 of 2)
public static decimal operator +(decimal value, TaxRate taxRate)
TaxRate Addition (2 of 2)
public static decimal operator +(TaxRate taxRate, decimal value)
TaxRate Implicit (1 of 2)
public static implicit operator TaxRate(decimal value)
TaxRate Implicit (2 of 2)
public static implicit operator decimal(TaxRate taxRate)
TaxRate Multiply (1 of 2)
public static decimal operator *(decimal value, TaxRate taxRate)
TaxRate Multiply (2 of 2)
public static decimal operator *(TaxRate taxRate, decimal value)