Click or drag to resize

IEditableChequeTaskProcessor Interface

Common interface for extending the functionality of fiscal operations. Derive from MarshalByRefObject and implement this interface to make custom cheque task processor. Your implementation should be registered by RegisterChequeTaskProcessor(IChequeTaskProcessor).

Namespace:  Resto.Front.Api.Devices.ChequeTaskProcessor
Assembly:  Resto.Front.Api.V6 (in Resto.Front.Api.V6.dll)
Syntax
C#
public interface IEditableChequeTaskProcessor : IChequeTaskProcessor

The IEditableChequeTaskProcessor type exposes the following members.

Methods
  NameDescription
Public methodAfterDoCheckAction
Perform the action after do cheque.
(Inherited from IChequeTaskProcessor.)
Public methodAfterPayIn
Perform the action after pay in.
(Inherited from IChequeTaskProcessor.)
Public methodAfterPayOut
Perform the action after pay out.
(Inherited from IChequeTaskProcessor.)
Public methodAfterXReport
Perform the action after printing the X-report.
(Inherited from IChequeTaskProcessor.)
Public methodAfterZReport
Perform the action after printing the Z-report.
(Inherited from IChequeTaskProcessor.)
Public methodBeforeDoCheckAction
Perform the action before do cheque.
(Inherited from IChequeTaskProcessor.)
Public methodBeforePayIn
Perform the action before pay in.
Public methodBeforePayOut
Perform the action before pay out when the cafe session is open.
Public methodBeforePayOutSessionClosed
Perform the action before pay out when the cafe session closed.
Public methodBeforeXReport
Perform the action before printing the X-report.
(Inherited from IChequeTaskProcessor.)
Public methodBeforeZReport
Perform the action before printing the Z-report.
(Inherited from IChequeTaskProcessor.)
Top
See Also