a5de2dbbb1
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
8 lines
210 B
C#
8 lines
210 B
C#
using ROLAC.API.DTOs.Finance;
|
|
namespace ROLAC.API.Services;
|
|
|
|
public interface IForm990ReportService
|
|
{
|
|
Task<FunctionalExpenseStatementDto> GetFunctionalExpenseStatementAsync(DateOnly? from, DateOnly? to);
|
|
}
|