7 lines
165 B
C#
7 lines
165 B
C#
namespace Inspectron.Epson.PrintServer.Printers.Utils;
|
|
|
|
public interface IReceiptConverterFactory
|
|
{
|
|
IReceiptConverter Create(int receiptType, byte printerId);
|
|
}
|