feature: Digitization Workstation UI
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
public interface IPatientRegistryService
|
||||
{
|
||||
Task<IReadOnlyList<PatientSearchResult>> SearchAsync(string query, int limit = 20);
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
public interface IUserDirectoryService
|
||||
{
|
||||
Task<IReadOnlyList<UserSummaryResponse>> ListByRoleAsync(UserRole? role);
|
||||
}
|
||||
@@ -24,4 +24,9 @@ public interface IWorkQueueService
|
||||
/// This is the clinical approver's work queue.
|
||||
/// </summary>
|
||||
Task<WorkQueueResponse> GetClinicalApprovalQueueAsync(int page, int pageSize);
|
||||
|
||||
/// <summary>
|
||||
/// Returns aggregate work queue health metrics for the supervisor dashboard.
|
||||
/// </summary>
|
||||
Task<WorkQueueOverviewResponse> GetOverviewAsync();
|
||||
}
|
||||
Reference in New Issue
Block a user