OrderHelperListForReminder Method |
Gets list of orders for reminder.
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> ListForReminder(
int numberOfDays,
string lastSentNotificationType,
string[] notSentNotificationTypes,
OrderStatus[] allowedStates,
OrderStatus[] notAllowedStates,
string orderType,
string[] itemCategories
)
Public Shared Function ListForReminder (
numberOfDays As Integer,
lastSentNotificationType As String,
notSentNotificationTypes As String(),
allowedStates As OrderStatus(),
notAllowedStates As OrderStatus(),
orderType As String,
itemCategories As String()
) As IList(Of Order)
public:
static IList<Order^>^ ListForReminder(
int numberOfDays,
String^ lastSentNotificationType,
array<String^>^ notSentNotificationTypes,
array<OrderStatus>^ allowedStates,
array<OrderStatus>^ notAllowedStates,
String^ orderType,
array<String^>^ itemCategories
)
static member ListForReminder :
numberOfDays : int *
lastSentNotificationType : string *
notSentNotificationTypes : string[] *
allowedStates : OrderStatus[] *
notAllowedStates : OrderStatus[] *
orderType : string *
itemCategories : string[] -> IList<Order>
Parameters
- numberOfDays
- Type: SystemInt32
The number of days. - lastSentNotificationType
- Type: SystemString
The last sent notification type. - notSentNotificationTypes
- Type: SystemString
The list of notification types which are not sent yet. - allowedStates
- Type: Atomia.Billing.Core.Sdk.BusinessObjectsOrderStatus
The order allowed states. - notAllowedStates
- Type: Atomia.Billing.Core.Sdk.BusinessObjectsOrderStatus
The order not allowed states. - orderType
- Type: SystemString
The order type. - itemCategories
- Type: SystemString
The item categories.
Return Value
Type:
IListOrderList of orders for reminder.
See Also