SubscriptionHelperListByCustomerAndTypes Method (Account, String, String, String) |
Lists the subscriptions by customer and types.
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 List<Subscription> ListByCustomerAndTypes(
Account customer,
string[] types,
string[] allowedStates,
string[] notAllowedStates
)
Public Shared Function ListByCustomerAndTypes (
customer As Account,
types As String(),
allowedStates As String(),
notAllowedStates As String()
) As List(Of Subscription)
public:
static List<Subscription^>^ ListByCustomerAndTypes(
Account^ customer,
array<String^>^ types,
array<String^>^ allowedStates,
array<String^>^ notAllowedStates
)
static member ListByCustomerAndTypes :
customer : Account *
types : string[] *
allowedStates : string[] *
notAllowedStates : string[] -> List<Subscription>
Parameters
- customer
- Type: Account
The customer account. - types
- Type: SystemString
The types. - allowedStates
- Type: SystemString
The allowed states. - notAllowedStates
- Type: SystemString
The not allowed states.
Return Value
Type:
ListSubscriptionList of subscriptions.
See Also