Table of Contents

Interface ISupportInformativePriceInfo

Namespace
Dynamicweb.Ecommerce.Prices
Assembly
Dynamicweb.Ecommerce.dll
DEPRECATED To completely take over informative price calculation from eCommerce, create a class that implements this interface and overwrites FindInformativePriceInfo
[Obsolete("Use Dynamicweb.Ecommerce.Prices.IInformativePriceInfoProvider instead.")]
public interface ISupportInformativePriceInfo

Methods

FindInformativePriceInfo(Product, double, string, Currency, string, User)

Finds the informative price info.
PriceInfo FindInformativePriceInfo(Product product, double quantity, string variantId, Currency currency, string unitId, User user)

Parameters

product Product
The product.
quantity double
The quantity.
variantId string
The variant ID.
currency Currency
The currency.
unitId string
The unit ID.
user User
The user.

Returns

PriceInfo
A PriceInfo object.

Remarks

See the interface description of ISupportInformativePriceInfo for example of implementation.
To top