Api/Berizco.Repository/Repositories/UnitOfWork/IUnitOfWork.cs

6 lines
207 B
C#

namespace Brizco.Repository.Repositories.UnitOfWork;
public interface IUnitOfWork : IScopedDependency
{
System.Threading.Tasks.Task SaveChangesAsync(CancellationToken cancellationToken = default);
}