feat(finance): expose Form 990 line catalog endpoint

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Chris Chen
2026-06-24 19:36:01 -07:00
parent 3f61e9ceaf
commit 1a03a1cbba
4 changed files with 27 additions and 0 deletions
@@ -4,4 +4,5 @@ namespace ROLAC.API.Services;
public interface IForm990ReportService
{
Task<FunctionalExpenseStatementDto> GetFunctionalExpenseStatementAsync(DateOnly? from, DateOnly? to);
Task<List<Form990ExpenseLineDto>> GetLinesAsync();
}