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