using ROLAC.API.DTOs.Finance; namespace ROLAC.API.Services; public interface IForm1099ReportService { Task> GetBoxesAsync(); Task GetAnnualSummaryAsync(int taxYear); Task GetRecipientDetailAsync(int payeeId, int taxYear); }