Click or drag to resize

IOperationServiceRegisterBillChequeTaskResolver Method

Registers the bill cheque task resolver.

Namespace:  Resto.Front.Api
Assembly:  Resto.Front.Api.V6 (in Resto.Front.Api.V6.dll)
Syntax
C#
IDisposable RegisterBillChequeTaskResolver(
	RemotableFunc<IOrder, bool, IPointOfSale> billChequeTaskResolver
)

Parameters

billChequeTaskResolver
Type: Resto.Front.Api.RemotingHelpersRemotableFuncIOrder, Boolean, IPointOfSale
Func with access to IOrder, is bill storning bool flag and returning IPointOfSale to redirect bill cheque task to.

Return Value

Type: IDisposable
Remarks
If you register your own RegisterBillChequeTaskResolver before printing the iikoFront bill, the delegate will call, transfer the IOrder and flag whether the operation is canceling the bill. You should to return IPointOfSale to redirect bill cheque task to.
See Also