9 lines
263 B
C#
9 lines
263 B
C#
|
|
namespace DocuMed.Repository.Repositories.UnitOfWork;
|
|||
|
|
|
|||
|
|
public interface IUnitOfWork : IScopedDependency
|
|||
|
|
{
|
|||
|
|
Task BeginTransaction();
|
|||
|
|
Task RollBackAsync();
|
|||
|
|
Task CommitAsync();
|
|||
|
|
Task SaveChangesAsync(CancellationToken cancellationToken = default);
|
|||
|
|
}
|