dotnet-db-context/PoweredSoft.DbContext.Core/IDbContextTransactionService.cs
2021-09-20 10:21:48 -04:00

11 lines
183 B
C#

using System;
namespace PoweredSoft.DbContext.Core
{
public interface IDbContextTransactionService : IDisposable
{
void Commit();
void Rollback();
}
}