SubscriptionHelperGetSubscriptionsByCustomerAndStartDate Method |
Gets the subscriptions.
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> GetSubscriptionsByCustomerAndStartDate(
Account customer,
DateTime startDate,
string[] allowedStates,
string[] notAllowedStates
)
Public Shared Function GetSubscriptionsByCustomerAndStartDate (
customer As Account,
startDate As DateTime,
allowedStates As String(),
notAllowedStates As String()
) As List(Of Subscription)
public:
static List<Subscription^>^ GetSubscriptionsByCustomerAndStartDate(
Account^ customer,
DateTime startDate,
array<String^>^ allowedStates,
array<String^>^ notAllowedStates
)
static member GetSubscriptionsByCustomerAndStartDate :
customer : Account *
startDate : DateTime *
allowedStates : string[] *
notAllowedStates : string[] -> List<Subscription>
Parameters
- customer
- Type: Account
Customer account. - startDate
- Type: SystemDateTime
The subscription start date. - allowedStates
- Type: SystemString
The allowed states. - notAllowedStates
- Type: SystemString
The not allowed states.
Return Value
Type:
ListSubscriptionFiltered subscriptions.
See Also