=== Summary: 675 files | 7 generated | 484 fresh | 4605 untracked | 4268 adopted | 355 marked | 466 validated-ok | 2+0 stale (sig+body) | 0 skipped | 0 failed | elapsed 11:08:11.442 (40091.44s) ===
This commit is contained in:
@@ -12,21 +12,25 @@ public interface IRecordingAlertService : IApiRequestService
|
||||
/// <param name="patientId">The identifier of the patient whose recording alerts are being queried.</param>
|
||||
/// <param name="num">The maximum number of most recent recording alerts to return. Defaults to 2.</param>
|
||||
/// <returns>A task representing the asynchronous operation, containing a list of the patient's most recent recording alerts.</returns>
|
||||
/// <!-- aidoc:v1 sig=452ab2a -->
|
||||
Task<List<PatientRecordingAlert>> FindLastRecordingAlert(ObjectId patientId, int num = 2);
|
||||
/// <summary>
|
||||
/// Deletes records associated with the specified patient identifier.
|
||||
/// </summary>
|
||||
/// <param name="id">The unique identifier of the patient whose related records should be removed.</param>
|
||||
/// <!-- aidoc:v1 sig=d457cb9 -->
|
||||
Task DeleteByPatientId(ObjectId id);
|
||||
/// <summary>
|
||||
/// Asynchronously archives the specified patient, moving their record out of the active set.
|
||||
/// </summary>
|
||||
/// <param name="patient">The patient to archive.</param>
|
||||
/// <!-- aidoc:v1 sig=52c2373 -->
|
||||
Task Archive(Patient patient);
|
||||
/// <summary>
|
||||
/// Archives the records associated with the specified patient identifier.
|
||||
/// </summary>
|
||||
/// <param name="id">The <see cref="ObjectId"/> identifying the patient whose related records should be archived.</param>
|
||||
/// <!-- aidoc:v1 sig=e5916ec -->
|
||||
Task ArchiveByPatientId(ObjectId id);
|
||||
|
||||
/// <summary>
|
||||
@@ -36,5 +40,6 @@ public interface IRecordingAlertService : IApiRequestService
|
||||
/// <param name="nameId">The identifier used to select the target records to update.</param>
|
||||
/// <param name="id">The new ObjectId value to assign to the matching records.</param>
|
||||
/// <param name="oldId">The existing ObjectId value to be replaced in the matching records.</param>
|
||||
/// <!-- aidoc:v1 sig=24ef97c -->
|
||||
Task UpdateManyObjectId(string nameId, ObjectId id, ObjectId oldId);
|
||||
}
|
||||
Reference in New Issue
Block a user