AccountsHelperGetAccounts Method (ListGuid, Boolean) |
Gets the accounts with the given ids.
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<Account> GetAccounts(
List<Guid> accountIds,
bool addToCache
)
Public Shared Function GetAccounts (
accountIds As List(Of Guid),
addToCache As Boolean
) As List(Of Account)
public:
static List<Account^>^ GetAccounts(
List<Guid>^ accountIds,
bool addToCache
)
static member GetAccounts :
accountIds : List<Guid> *
addToCache : bool -> List<Account>
Parameters
- accountIds
- Type: System.Collections.GenericListGuid
The ids of the accounts. - addToCache
- Type: SystemBoolean
If set to true accounts will be cached.
Return Value
Type:
ListAccountA list of the accounts.
See Also