Click or drag to resize

BusinessObjectBaseUpdateDataObjectCollectionTData, TBusiness Method

Updates the data object collection with logic to avoid deleting and re-inserting all items.

Namespace:  Atomia.Billing.Core.Sdk.BusinessObjects
Assembly:  Atomia.Billing.Core.Sdk (in Atomia.Billing.Core.Sdk.dll) Version: 18.10.7096.28998
Syntax
public void UpdateDataObjectCollection<TData, TBusiness>(
	IList<TData> dataList,
	IList<TBusiness> businessList
)
where TData : IDataObjectWithId
where TBusiness : Object, IBusinessObjectWithId<TData>

Parameters

dataList
Type: System.Collections.GenericIListTData
The list of data objects.
businessList
Type: System.Collections.GenericIListTBusiness
The list of business objects.

Type Parameters

TData
The type of the data object.
TBusiness
The type of the business object.
See Also