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,17 @@ using MongoDB.Bson;
namespace adas_core.Application.Services;
/// <summary>
/// Implements <see cref="INoticeService"/>, providing the coordination logic for managing
/// notices and delivering them through the configured subscriber, messaging, display, and audit subsystems.
/// </summary>
/// <remarks>
/// Instances are created through a primary constructor that receives <see cref="ILogger{NoticeService}"/>,
/// <see cref="ISubscribersService"/>, <see cref="INoticeRepository"/>, <see cref="IClientMessageService"/>,
/// <see cref="IDisplayService"/>, <see cref="IHttpContextAccessor"/>, and <see cref="ILocalAuditService"/>
/// as injected collaborators.
/// </remarks>
/// <!-- aidoc:v1 sig=3ccc883 -->
public class NoticeService(
ILogger<NoticeService> logger,
ISubscribersService subscribersService,