0754ed8d69
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
10 lines
307 B
C#
10 lines
307 B
C#
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);
|
|
}
|