15 lines
355 B
C#
15 lines
355 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using linesider_screen_bankend.Services.Interfaces;
|
|
namespace linesider_screen_bankend.Services
|
|
{
|
|
public class PrintService : IPrintService
|
|
{
|
|
public void DoPrint(string labelPath)
|
|
{
|
|
Debug.WriteLine($"地址:{labelPath}");
|
|
}
|
|
}
|
|
}
|