OrderHelperListForCustomer Method |
Lists orders by statuses.
Namespace:
Atomia.Billing.Core.Sdk.BusinessLogic
Assembly:
Atomia.Billing.Core.Sdk (in Atomia.Billing.Core.Sdk.dll) Version: 18.10.7096.28998
Syntax public static IList<Order> ListForCustomer(
Guid customerId,
IList<OrderStatus> statuses
)
Public Shared Function ListForCustomer (
customerId As Guid,
statuses As IList(Of OrderStatus)
) As IList(Of Order)
public:
static IList<Order^>^ ListForCustomer(
Guid customerId,
IList<OrderStatus>^ statuses
)
static member ListForCustomer :
customerId : Guid *
statuses : IList<OrderStatus> -> IList<Order>
Parameters
- customerId
- Type: SystemGuid
The customer identifier. - statuses
- Type: System.Collections.GenericIListOrderStatus
The statuses.
Return Value
Type:
IListOrder
List of orders.
See Also