feature: Degraded Operations Visibility
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
public interface IDischargeSummaryService
|
||||
{
|
||||
Task<DischargeSummaryInfo> GetInfoAsync(Guid encounterId, CancellationToken ct = default);
|
||||
Task<DischargeSummaryContent> GetContentAsync(Guid encounterId, CancellationToken ct = default);
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
public interface IOperationsService
|
||||
{
|
||||
Task<IReadOnlyList<GatewayFleetItem>> GetGatewayFleetAsync(GatewayFleetFilter filter, CancellationToken ct);
|
||||
Task<GatewayDetailResponse> GetGatewayDetailAsync(Guid gatewayId, CancellationToken ct);
|
||||
Task<SiteGatewaySummaryResponse> GetSiteSummaryAsync(Guid siteId, CancellationToken ct);
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
public interface IUserService
|
||||
{
|
||||
Task<List<ClinicalUserResponse>> ListAsync();
|
||||
Task<ClinicalUserResponse> CreateAsync(CreateUserRequest req);
|
||||
Task<ClinicalUserResponse> UpdateAsync(Guid id, UpdateUserRequest req);
|
||||
}
|
||||
Reference in New Issue
Block a user