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.Driver;
namespace adas_core.Application.Services;
/// <summary>
/// Provides operations for retrieving and managing historical configuration changes, delegating data access to an <see cref="IHistoricalConfigChangesRepository"/> and coordinating logging, HTTP context, and auditing concerns.
/// </summary>
/// <remarks>
/// Implements <see cref="IHistoricalConfigChangesService"/> and uses <paramref name="historicalConfigChangesRepository"/> for persistence, <paramref name="logger"/> for diagnostics, <paramref name="httpContextAccessor"/> for request context, and <paramref name="auditService"/> to record local audit entries.
/// </remarks>
/// <!-- aidoc:v1 sig=757183c -->
public class HistoricalConfigChangesService(
IHistoricalConfigChangesRepository historicalConfigChangesRepository,
ILogger<HistoricalConfigChangesService> logger,