 | OrderHistoryServiceGetOrderHistory Method |
Retrieve the order history of the specified Individual.
Namespace: Ignition.Commerce.Accounting.HistoryAssembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.28229
Syntaxpublic IReadOnlyCollection<IHistoricalOrder> GetOrderHistory(
ICustomerWithFinancialData customer
)
Public Function GetOrderHistory (
customer As ICustomerWithFinancialData
) As IReadOnlyCollection(Of IHistoricalOrder)
public:
virtual IReadOnlyCollection<IHistoricalOrder^>^ GetOrderHistory(
ICustomerWithFinancialData^ customer
) sealed
abstract GetOrderHistory :
customer : ICustomerWithFinancialData -> IReadOnlyCollection<IHistoricalOrder>
override GetOrderHistory :
customer : ICustomerWithFinancialData -> IReadOnlyCollection<IHistoricalOrder> Parameters
- customer ICustomerWithFinancialData
- The Individual whose order history should be retrieved.
Return Value
IReadOnlyCollectionIHistoricalOrderA collection of historical orders, ordered by transaction date with more recent orders appearing first. Voided and proforma records are not included, nor are any records related to non-fulfillment orders.
Remarks
All returned orders and invoices
See Also