2024-11-09 19:18:06 +01:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using Wino.Core.Domain.Enums;
|
|
|
|
|
|
|
2025-02-16 11:54:23 +01:00
|
|
|
|
namespace Wino.Core.Domain.Interfaces;
|
|
|
|
|
|
|
|
|
|
|
|
public interface IPrintService
|
2024-11-09 19:18:06 +01:00
|
|
|
|
{
|
2025-02-16 11:54:23 +01:00
|
|
|
|
Task<PrintingResult> PrintPdfFileAsync(string pdfFilePath, string printTitle);
|
2024-11-09 19:18:06 +01:00
|
|
|
|
}
|