Click or drag to resize

OperationServiceExtensionsRegisterBillChequeTaskResolver Method

Registers the bill cheque task resolver.

Namespace:  Resto.Front.Api.Extensions
Assembly:  Resto.Front.Api.V6 (in Resto.Front.Api.V6.dll)
Syntax
C#
public static IDisposable RegisterBillChequeTaskResolver(
	this IOperationService operationService,
	Func<IOrder, bool, IPointOfSale> callback
)

Parameters

operationService
Type: Resto.Front.ApiIOperationService
The operation service.
callback
Type: SystemFuncIOrder, 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

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