mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-13 21:16:38 +08:00
13 lines
310 B
C#
13 lines
310 B
C#
|
|
using System.Data;
|
|||
|
|
|
|||
|
|
namespace Yi.Framework.Uow
|
|||
|
|
{
|
|||
|
|
public interface IUnitOfWork : IDisposable
|
|||
|
|
{
|
|||
|
|
public void Init(bool isTransactional, IsolationLevel? isolationLevel, int? timeout);
|
|||
|
|
public void BeginTran();
|
|||
|
|
|
|||
|
|
public void CommitTran();
|
|||
|
|
public void RollbackTran();
|
|||
|
|
}
|
|||
|
|
}
|