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}"); } } }