feat(finance): Form 990 Part IX functional-expense aggregation service

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Chris Chen
2026-06-24 19:26:59 -07:00
parent 1fa36ae62f
commit a5de2dbbb1
4 changed files with 171 additions and 0 deletions
@@ -0,0 +1,7 @@
using ROLAC.API.DTOs.Finance;
namespace ROLAC.API.Services;
public interface IForm990ReportService
{
Task<FunctionalExpenseStatementDto> GetFunctionalExpenseStatementAsync(DateOnly? from, DateOnly? to);
}