You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
418 B
19 lines
418 B
using System.Reflection;
|
|
using SqlSugar;
|
|
|
|
namespace Tiobon.Core.Repository.UnitOfWorks;
|
|
|
|
public interface IUnitOfWorkManage
|
|
{
|
|
SqlSugarScope GetDbClient();
|
|
int TranCount { get; }
|
|
|
|
UnitOfWork CreateUnitOfWork();
|
|
|
|
void BeginTran();
|
|
void BeginTran(MethodInfo method);
|
|
void CommitTran();
|
|
void CommitTran(MethodInfo method);
|
|
void RollbackTran();
|
|
void RollbackTran(MethodInfo method);
|
|
} |