Documentation modifications

This commit is contained in:
julian
2026-06-27 15:23:26 -07:00
parent a633fe6c06
commit a19fb90902
218 changed files with 2882 additions and 0 deletions
@@ -10,6 +10,13 @@ using MongoDB.Bson;
namespace adas_core.Application.Services;
/// <summary>
/// Implements <see cref="IRecordingAlertService"/> to manage recording alerts, coordinating patient lookup, observation configuration, alert persistence, client messaging, subscribers, auditing, and HTTP context access.
/// </summary>
/// <remarks>
/// Uses <see cref="IRecordingAlertRepository"/> and <see cref="IRecordingAlertArchiveRepository"/> for alert persistence, and lazily resolves <see cref="IPatientService"/> through <paramref name="patientService"/>.
/// </remarks>
/// <!-- aidoc:v1 sig=6c23cec -->
public class RecordingAlertService(
Lazy<IPatientService> patientService,
IConfigObservationService configObservationService,