Files
ROLAC/API/ROLAC.API/Services/IForm990ReportService.cs
T
2026-06-24 19:26:59 -07:00

8 lines
210 B
C#

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