Table of Contents

Class StockLocationProvider

Namespace
Dynamicweb.Ecommerce.Stocks
Assembly
Dynamicweb.Ecommerce.dll
Represents a stock provider.
public abstract class StockLocationProvider
Inheritance
StockLocationProvider
Inherited Members

Methods

FindStocks(OrderLine)

Finds the stock.
[Obsolete("Use GetStockLocations instead.")]
public virtual StockLocationCollection FindStocks(OrderLine orderLine)

Parameters

orderLine OrderLine
The order line.

Returns

StockLocationCollection
The collection of the StockLocation.

GetStockLocations(OrderLine)

Finds the stock locations.
public virtual IEnumerable<StockLocation> GetStockLocations(OrderLine orderLine)

Parameters

orderLine OrderLine
The order line.

Returns

IEnumerable<StockLocation>
The collection of the StockLocation.
To top