Click or drag to resize

OperationServiceExtensionsAddOrderCombo Method

Create order combo item. Order must contain new combo items.

Namespace: Resto.Front.Api.Extensions
Assembly: Resto.Front.Api.V8 (in Resto.Front.Api.V8.dll)
Syntax
C#
public static IOrderCombo AddOrderCombo(
	this IOperationService operationService,
	Guid id,
	string name,
	int amount,
	decimal price,
	Guid sourceActionId,
	Guid programId,
	IReadOnlyDictionary<Guid, IOrderCookingItem> comboItems,
	IOrder order,
	IOrderGuestItem guest,
	ICredentials credentials,
	IProductSize size = null
)

Parameters

operationService  IOperationService
Operation service.
id  Guid
Unique identifier of the new combo.
name  String
Name of combo.
amount  Int32
Amount of combo.
price  Decimal
Price of combo.
sourceActionId  Guid
Unique identifier of source combo (template identifier).
programId  Guid
Identifier of the loyalty program.
comboItems  IReadOnlyDictionaryGuid, IOrderCookingItem
Combo items dictionary. Key - combo group identifier, Value - item id (must be contained in order).
order  IOrder
Order to which combo will be added.
guest  IOrderGuestItem
Guest to which combo will be added.
credentials  ICredentials
Credentials of the user. Required to pass permission and some other checks, as well as execute personalized operations.
size  IProductSize  (Optional)
Size of the combo if it's template has scale, otherwise null.

Return Value

IOrderCombo

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IOperationService. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also