feat(1099): add Form1099ReportService cash-basis annual aggregation

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Chris Chen
2026-06-25 16:53:28 -07:00
parent 9aa64b5f4c
commit 0754ed8d69
3 changed files with 215 additions and 0 deletions
@@ -0,0 +1,9 @@
using ROLAC.API.DTOs.Finance;
namespace ROLAC.API.Services;
public interface IForm1099ReportService
{
Task<List<Form1099BoxDto>> GetBoxesAsync();
Task<Form1099SummaryDto> GetAnnualSummaryAsync(int taxYear);
Task<Form1099RecipientDetailDto?> GetRecipientDetailAsync(int payeeId, int taxYear);
}