Interface IOrderSearchService
NOTE: This is a pre-release API that is UNSTABLE and might not satisfy the compatibility requirements as denoted by its associated normal version.
Service to retrieve historical data for IOrderGroup.
Namespace: EPiServer.Commerce.Order
Assembly: Mediachase.Commerce.dll
Version: 12.17.2Syntax
public interface IOrderSearchService
Methods
Find<TOrderGroup>(OrderSearchFilter)
Finds orders with a specific OrderSearchFilter for a specific TOrderGroup
.
Declaration
OrderSearchResults<TOrderGroup> Find<TOrderGroup>(OrderSearchFilter filter)
where TOrderGroup : class, IOrderGroup
Parameters
Type | Name | Description |
---|---|---|
OrderSearchFilter | filter | The search filter. |
Returns
Type | Description |
---|---|
OrderSearchResults<TOrderGroup> | The order search results. |
Type Parameters
Name | Description |
---|---|
TOrderGroup | The given order type for filter. |