unit of work

This commit is contained in:
2026-02-05 19:31:17 +01:00
parent 61997cc277
commit 82d44c230f
3 changed files with 29 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
namespace AipsCore.Domain.Abstract;
public interface IUnitOfWork
{
Task SaveChangesAsync(CancellationToken cancellationToken = default);
}