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  IKitchenOrder
Order which external data and its items external data should be deleted.
orderExternalDataKeys  HashSetString
Keys of order`s external data, that needs to be deleted.
itemsExternalDataKeys  IDictionaryIKitchenOrderCookingItem, HashSetString
Pairs of order items and keys of item`s external data, that needs to be deleted.
See Also