Table of Contents

Class PriceViewModel

Namespace
Dynamicweb.Frontend
Assembly
Dynamicweb.dll
public class PriceViewModel
Inheritance
PriceViewModel
Inherited Members
Extension Methods

Constructors

PriceViewModel()

Initializes a new instance of the PriceViewModel class.

public PriceViewModel()

Properties

Currency

Gets or sets the currency.

public PriceViewModel.CurrencyInfo? Currency { get; set; }

Property Value

PriceViewModel.CurrencyInfo

The currency.

Price

Gets or sets the price.

public PriceViewModel.PriceInfo? Price { get; set; }

Property Value

PriceViewModel.PriceInfo

The price.

PriceWithVat

Gets or sets the price with vat.

public PriceViewModel.PriceInfo? PriceWithVat { get; set; }

Property Value

PriceViewModel.PriceInfo

The price with vat.

PriceWithoutVat

Gets or sets the price with vat.

public PriceViewModel.PriceInfo? PriceWithoutVat { get; set; }

Property Value

PriceViewModel.PriceInfo

The price with vat.

ShowPricesWithVat

Gets or sets a value indicating whether to show prices with VAT.

public bool ShowPricesWithVat { get; set; }

Property Value

bool

Vat

Gets or sets the vat.

public PriceViewModel.PriceInfo? Vat { get; set; }

Property Value

PriceViewModel.PriceInfo

The vat.

VatPercent

Gets or sets the vat percentage.

public PriceViewModel.VatInfo? VatPercent { get; set; }

Property Value

PriceViewModel.VatInfo

The vat percentage.

To top