Exemplo n.º 1
0
        public void Execute(PosPrinter printer, PrinterStation station)
        {
            if (!printer.CapRecPaperCut && station == PrinterStation.Receipt)
            {
                return;
            }

            printer.PrintNormal(station, EscapeSequence.PaperCut(PercentCut));
        }
Exemplo n.º 2
0
 public void Execute(PosPrinter printer)
 {
     printer.Print(EscapeSequence.PaperCut(PercentCut));
 }