using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XP.Common.Database.Interfaces { /// /// 数据库事务接口 /// public interface IDbTransaction : IDisposable { /// /// 提交事务 /// IDbExecuteResult Commit(); /// /// 回滚事务 /// IDbExecuteResult Rollback(); } }