Files
vigilcare-clinical/VigilCareClinicalAPI/Services/Interfaces/IPhiAccessLogService.cs
T

7 lines
314 B
C#

public interface IPhiAccessLogService
{
Task LogViewAsync(Guid patientId, string resourcePath);
Task LogListAsync(string resourcePath, int resultCount, string? searchQuery = null);
Task LogCreateAsync(Guid patientId, string resourcePath);
Task LogUpdateAsync(Guid patientId, string resourcePath);
}