Created
June 20, 2018 15:21
-
-
Save madsunrise/be0c61ab8b73249c712f76d04c6d8d0e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ru.evotor.drivers.kkm; | |
import ru.evotor.devices.commons.kkm_state.KKMStatus; | |
import ru.evotor.devices.commons.kkm_state.Result; | |
import ru.evotor.devices.commons.kkm_state.ZReportOptions; | |
import ru.evotor.framework.receipt.PrintableReceipt; | |
interface IKKMRemoteDriver { | |
Result printString(in String string); | |
Result setTime(long time); | |
Result getTime(); | |
Result getCurrentStatus(); | |
Result printSellReceipt(in PrintableReceipt receipt); | |
Result setZReportOptions(in ZReportOptions options); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment