Files
Print_server/Inspectron.Epson/PrintServer/Printers/EpsonPrinterFactory.cs
EugeneTes e8d20c77c7 size to kitchen
printer logs removed
2026-02-05 11:39:06 +01:00

18 lines
355 B
C#

using Microsoft.Extensions.Logging;
namespace Inspectron.Epson.PrintServer.Printers;
public class EpsonPrinterFactory:IPrinterFactory
{
private readonly ILogger _logger;
public EpsonPrinterFactory(ILogger logger)
{
_logger = logger;
}
public IEpsonPrinter CreatePrinter()
{
return new EpsonPrinter();
}
}