11 lines
257 B
C#
11 lines
257 B
C#
public interface IObservationQueryService
|
|
{
|
|
Task<CursorPage<LocalObservation>> GetHistoryAsync(
|
|
Guid encounterId,
|
|
string? code,
|
|
DateTimeOffset? from,
|
|
DateTimeOffset? to,
|
|
int limit,
|
|
string? cursorToken);
|
|
}
|