PI_Assync_SCDE/Application/ICalendarioService.cs

7 lines
186 B
C#

namespace Application
{
public interface ICalendarioService
{
Task<string?> ObterEventoLimiteColetaAsync(DateTime dataReferencia, CancellationToken ct = default);
}
}