IProductCatalogueManagerFeasiblity Method |
[This is preliminary documentation and is subject to change.]
Retrieves the products that are theoretically available on specified adresses at a specific time
Namespace: Netadmin.Management.OrderAssembly: Netadmin.Management.Interfaces (in Netadmin.Management.Interfaces.dll) Version: release/9.0@131b654fe7332b0776120c2b44d96c6cac5ac9a2
SyntaxIReadOnlyDictionary<long, IEnumerable<IProductInformation>> Feasiblity(
DateTime time,
IEnumerable<long> addressIds,
Nullable<long> serviceProviderId
)
Function Feasiblity (
time As DateTime,
addressIds As IEnumerable(Of Long),
serviceProviderId As Nullable(Of Long)
) As IReadOnlyDictionary(Of Long, IEnumerable(Of IProductInformation))
Parameters
- time
- Type: SystemDateTime
The time to check - addressIds
- Type: System.Collections.GenericIEnumerableInt64
The address ids to check for - serviceProviderId
- Type: SystemNullableInt64
The service provider id to filter by. Null for no filter
Return Value
Type:
IReadOnlyDictionaryInt64,
IEnumerableIProductInformationA dictionary where the address id is key and feasible products are the value
ExceptionsException | Condition |
---|
ArgumentNullException | Thrown if addressIds is null |
See Also