using AGEHAB.RelatorioSeadIpasgo.Domain.Entities; namespace AGEHAB.RelatorioSeadIpasgo.Application.Abstractions; public interface IRelatorioRepository { Task> ObterCompetenciasAsync(CancellationToken cancellationToken); Task> ObterRelatorioAsync(int competenciaHandle, string tiposCalculo, CancellationToken cancellationToken); }