Click or drag to resize

IOperationService.PrintOrderItems Method

Prints service cheque for defined order item products.

Namespace:  Resto.Front.Api.V5
Assembly:  Resto.Front.Api.V5 (in Resto.Front.Api.V5.dll)
Syntax
C#
void PrintOrderItems(
	ICredentials credentials,
	IOrder order,
	IReadOnlyList<IOrderRootItem> orderItems
)

Parameters

credentials
Type: Resto.Front.Api.V5.Data.Security.ICredentials
The credentials returned by AuthenticateByPin(String) method.
order
Type: Resto.Front.Api.V5.Data.Orders.IOrder
Order which items will be printed.
orderItems
Type: System.Collections.Generic.IReadOnlyList<IOrderRootItem>
Order items to be printed.
Remarks
All order items must be either not printed (so they will be printed) or printed (so they will be reprinted), but not mixed.
See Also