7 lines
186 B
C#
7 lines
186 B
C#
namespace Application
|
|
{
|
|
public interface ICalendarioService
|
|
{
|
|
Task<string?> ObterEventoLimiteColetaAsync(DateTime dataReferencia, CancellationToken ct = default);
|
|
}
|
|
} |