auto.bus_api/Server/Services/IReportService.cs
cuqmbr 20def5de44 feat: add "Popular routes" statistics
feat: add financial report generation

feat: add automation task: indirect route search
2022-12-09 11:54:14 +02:00

12 lines
362 B
C#

using Microsoft.AspNetCore.Mvc;
namespace Server.Services;
public interface IReportService
{
Task<(bool IsSucceed, IActionResult? actionResult, Stream ticketPdf)>
GetTicket(int ticketGroupId);
Task<(bool isSucceed, IActionResult? actionResult, Stream reportPdf)>
GetCompanyReport(int companyId, DateTime fromDate, DateTime toDate);
}