Files
Print_server/Inspectron.Epson/PrintServer/PrinterAssinment/TestAssignedPrinterRepository.cs
2026-01-13 09:06:47 +01:00

12 lines
291 B
C#

using Inspectron.Epson.PrintServer.PrintServices;
namespace Inspectron.Epson.PrintServer.PrinterAssinment;
public class TestAssignedPrinterRepository:IAssignedPrinterRepository
{
public string? GetAssignedPrinter(string workAreaId)
{
return "127.0.0.1";
}
}