auto.bus_api/Server/Services/IReportService.cs
2022-11-29 12:30:45 +02:00

8 lines
238 B
C#

namespace Server.Services;
public interface IReportService
{
Task<(bool IsSucceed, string? message, Stream ticketPdf)> GetTicket(int ticketGroupId);
Task<(bool isSucceed, string? message, Stream reportPdf)> GetCompanyReport();
}