1a03a1cbba
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
9 lines
265 B
C#
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();
|
|
}
|