TemplatePro/BZPT.Domains/IRepositories/IUnitOfWorkSugar.cs

25 lines
772 B
C#
Raw Normal View History

2025-07-17 22:41:38 +08:00
/***********************************************************
**:
**:
************************************************************/
namespace BZPT.Domains.IRepositories
{
public interface IUnitOfWorkSugar
{
bool BeginTrans { get; }
bool IsCommitted { get; }
IRepositoryOptions Options { get; set; }
int? Timeout { get; set; }
void BeginTran();
void Commit();
void Dispose();
T GetRepository<T>() where T : class;
void Rollback();
}
}