Class DefaultPlacedPriceProcessor
Service for updating and retrieving PlacedPrice for IOrderGroup.
Inheritance
System.Object
DefaultPlacedPriceProcessor
Implements
Namespace: EPiServer.Commerce.Order
Assembly: EPiServer.Business.Commerce.dll
Version: 14.26.0Syntax
public class DefaultPlacedPriceProcessor : Object, IPlacedPriceProcessor
Constructors
DefaultPlacedPriceProcessor(IPriceService, IContentLoader, ReferenceConverter, MapUserKey)
Declaration
public DefaultPlacedPriceProcessor(IPriceService priceService, IContentLoader contentLoader, ReferenceConverter referenceConverter, MapUserKey mapUserKey)
Parameters
| Type | Name | Description |
|---|---|---|
| IPriceService | priceService | |
| EPiServer.IContentLoader | contentLoader | |
| ReferenceConverter | referenceConverter | |
| MapUserKey | mapUserKey |
Methods
GetPlacedPrice(EntryContentBase, Decimal, CustomerContact, MarketId, Currency)
Gets the placed price.
Declaration
public virtual Nullable<Money> GetPlacedPrice(EntryContentBase entry, Decimal quantity, CustomerContact customerContact, MarketId marketId, Currency currency)
Parameters
| Type | Name | Description |
|---|---|---|
| EntryContentBase | entry | The entry. |
| System.Decimal | quantity | The quantity. |
| CustomerContact | customerContact | The customer contact. |
| MarketId | marketId | The market id. |
| Currency | currency | The currency. |
Returns
| Type | Description |
|---|---|
| System.Nullable<Money> | A Money |
UpdatePlacedPrice(ILineItem, CustomerContact, MarketId, Currency, Action<ILineItem, ValidationIssue>)
Updates the ILineItem item placed price or raises ValidationIssue if there is no valid price.
Declaration
public virtual bool UpdatePlacedPrice(ILineItem lineItem, CustomerContact customerContact, MarketId marketId, Currency currency, Action<ILineItem, ValidationIssue> onValidationError)
Parameters
| Type | Name | Description |
|---|---|---|
| ILineItem | lineItem | The line item. |
| CustomerContact | customerContact | The customer contact. |
| MarketId | marketId | The market id. |
| Currency | currency | The currency. |
| System.Action<ILineItem, ValidationIssue> | onValidationError | A callback that is invoked if a validation issue is detected. |
Returns
| Type | Description |
|---|---|
| System.Boolean | False if is there is no valid price |