Files
shgxtzcjhoudaosaomadayinwpf/linesider_screen_bankend/Services/linesider_screen_bankend.Services/PrintService.cs
2025-04-29 09:04:50 +08:00

13 lines
317 B
C#

using System.Collections.Generic;
using linesider_screen_bankend.Services.Interfaces;
namespace linesider_screen_bankend.Services
{
public class PrintService : IPrintService
{
public void DoPrint(string labelPath)
{
throw new System.NotImplementedException();
}
}
}