using ROLAC.API.DTOs.Payee; namespace ROLAC.API.Services; public interface IPayee1099Service { Task> GetAllAsync(bool includeInactive); Task GetByIdAsync(int id); Task CreateAsync(SavePayee1099Request r); Task UpdateAsync(int id, SavePayee1099Request r); Task DeleteAsync(int id); /// Full decrypted TIN. Caller must be authorized (gated at controller). Task RevealTinAsync(int id); }