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

6 lines
207 B
C#
Raw Normal View History

2023-09-15 12:37:02 +03:30
namespace Brizco.Repository.Repositories.UnitOfWork;
public interface IUnitOfWork : IScopedDependency
{
System.Threading.Tasks.Task SaveChangesAsync(CancellationToken cancellationToken = default);
}