$mermaidjs
Clean Architecture Demo
Loading...
Searching...
No Matches
IUnitOfWork.cs
Go to the documentation of this file.
2
36public interface IUnitOfWork
37{
38 Task<int> SaveChangesAsync(CancellationToken cancellationToken = default);
39}
IUnitOfWork es la abstracción para coordinar la persistencia de cambios de entidades.
Task< int > SaveChangesAsync(CancellationToken cancellationToken=default)