Click or drag to resize

IOperationServiceComplexDeleteKitchenOrderAndItemsExternalData Method

Complex ExternalData update for the entire kitchen order. Allows you to bulk delete ExternalData for an order and all its items.

Namespace:  Resto.Front.Api
Assembly:  Resto.Front.Api.V9 (in Resto.Front.Api.V9.dll)
Syntax
C#
void ComplexDeleteKitchenOrderAndItemsExternalData(
	IKitchenOrder order,
	HashSet<string> orderExternalDataKeys,
	IDictionary<IKitchenOrderCookingItem, HashSet<string>> itemsExternalDataKeys
)

Parameters

order
Type: Resto.Front.Api.Data.KitchenIKitchenOrder
Order which external data and its items external data should be deleted.
orderExternalDataKeys
Type: System.Collections.GenericHashSetString
Keys of order`s external data, that needs to be deleted.
itemsExternalDataKeys
Type: System.Collections.GenericIDictionaryIKitchenOrderCookingItem, HashSetString
Pairs of order items and keys of item`s external data, that needs to be deleted.
See Also