FormattedPrice
A Vendr price formatted for the given prices Currency
public sealed class FormattedPrice : ValueObjectBase
Inheritance
- class ValueObjectBase
Namespace
Properties
CurrencyId
Gets the ID of the Currency
of the price
public Guid CurrencyId { get; }
Tax
Gets the tax value of the price formatted with a currency symbol
public string Tax { get; }
TaxNoSymbol
Gets the tax value of the price formatted without a currency symbol
public string TaxNoSymbol { get; }
WithoutTax
Gets the value of the price without tax formatted with a currency symbol
public string WithoutTax { get; }
WithoutTaxNoSymbol
Gets the value of the price without tax formatted without a currency symbol
public string WithoutTaxNoSymbol { get; }
WithTax
Gets the value of the price with tax formatted with a currency symbol
public string WithTax { get; }
WithTaxNoSymbol
Gets the value of the price with tax formatted without a currency symbol
public string WithTaxNoSymbol { get; }
Methods
DeepClone
public override object DeepClone()
ToString
public override string ToString()
Operators
FormattedPrice Implicit
public static implicit operator string(FormattedPrice price)