auto.bus_api/Server/Services/IReportService.cs
cuqmbr 8f104c786e feat: add statistics in json format
refactor: move methods to their proper classes
2023-05-10 23:16:53 +03:00

19 lines
724 B
C#

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