Files
ROLAC/API/ROLAC.API/Services/IForm990ReportService.cs
T
2026-06-24 19:36:01 -07:00

9 lines
265 B
C#

using ROLAC.API.DTOs.Finance;
namespace ROLAC.API.Services;
public interface IForm990ReportService
{
Task<FunctionalExpenseStatementDto> GetFunctionalExpenseStatementAsync(DateOnly? from, DateOnly? to);
Task<List<Form990ExpenseLineDto>> GetLinesAsync();
}