13 lines
317 B
C#
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();
|
|
}
|
|
}
|
|
}
|