OperationServiceExtensionsAddOrderCombo Method |
Create order combo item. Order must contain new combo items.
Namespace: Resto.Front.Api.ExtensionsAssembly: Resto.Front.Api.V9 (in Resto.Front.Api.V9.dll)
Syntaxpublic static IOrderCombo AddOrderCombo(
this IOperationService operationService,
Guid id,
string name,
int amount,
decimal price,
Guid sourceActionId,
Guid programId,
IReadOnlyDictionary<ComboGroupIdAndName, IOrderCookingItem> comboItems,
IOrder order,
IOrderGuestItem guest,
ICredentials credentials,
IProductSize size = null
)
Parameters
- operationService IOperationService
- Operation service.
- id Guid
- Unique identifier of the new combo. MUST be unique not only for the order, but for the whole system. Therefore it must be taken from some synchronization operation or generated with Guid.NewGuid().
- 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 IReadOnlyDictionaryComboGroupIdAndName, IOrderCookingItem
- Combo items dictionary. Key - combo group identifier with its name, 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
IOrderComboUsage 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