=== 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:
julian
2026-06-28 02:50:05 -07:00
parent a19fb90902
commit 586f02a2ca
654 changed files with 5260 additions and 0 deletions
@@ -12,11 +12,13 @@ public interface ILocalAuditService
/// <param name="dataModified">The modified state of the data after the change. May be null when the action deletes an existing record.</param>
/// <param name="reason">An optional explanation or justification for the change. Defaults to null when no reason is provided.</param>
/// <returns>A task that represents the asynchronous creation of the audit log entry.</returns>
/// <!-- aidoc:v1 sig=f137579 -->
Task CreateAuditLogAsync(ClaimsPrincipal? user, object? dataOriginal, object? dataModified, string? reason = null);
/// <summary>
/// Asynchronously creates a deep copy of the specified data, producing a new independent instance of the same type.
/// </summary>
/// <param name="data">The data instance to be deep copied.</param>
/// <returns>A task that represents the asynchronous operation, containing the deep-copied instance of type <typeparamref name="T"/>, or <c>null</c> if the copy could not be produced.</returns>
/// <!-- aidoc:v1 sig=a6d959a -->
Task<T?> DeepCopyAsync<T>(T data);
}