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
@@ -5,6 +5,10 @@ using Microsoft.Extensions.Logging;
namespace adas_core.Application.Services;
/// <summary>
/// Implements the local auditing behavior defined by <see cref="ILocalAuditService"/>, forwarding audit operations to an inner <see cref="IAuditService"/> and recording diagnostic information via an <see cref="ILogger{LocalAuditService}"/>.
/// </summary>
/// <!-- aidoc:v1 sig=e6cdfbf -->
public class LocalAuditService(
IAuditService auditService,
ILogger<LocalAuditService> logger)