14 lines
496 B
C#
14 lines
496 B
C#
public interface IAlertService
|
|
{
|
|
Task<PagedResult<ClinicalAlert>> ListByEncounterAsync(
|
|
Guid encounterId, AlertStatus? status, int page, int pageSize);
|
|
|
|
Task<PagedResult<ClinicalAlert>> ListGlobalAsync(
|
|
AlertStatus? status, AlertSeverity? severity, string? department, int page, int pageSize);
|
|
|
|
Task<ClinicalAlert> GetByIdAsync(Guid id);
|
|
|
|
Task<ClinicalAlert> AcknowledgeAsync(Guid id, AcknowledgeAlertRequest req);
|
|
|
|
Task<ClinicalAlert> ResolveAsync(Guid id);
|
|
} |