13 lines
241 B
C#
13 lines
241 B
C#
|
|
using SqlSugar;
|
|||
|
|
|
|||
|
|
namespace WinformDevFramework.IRepository.UnitOfWork
|
|||
|
|
{
|
|||
|
|
public interface IUnitOfWork
|
|||
|
|
{
|
|||
|
|
SqlSugarScope GetDbClient();
|
|||
|
|
void BeginTran();
|
|||
|
|
void CommitTran();
|
|||
|
|
void RollbackTran();
|
|||
|
|
}
|
|||
|
|
}
|