11 lines
206 B
C#
11 lines
206 B
C#
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace DMS.Core.Interfaces
|
||
|
|
{
|
||
|
|
public interface IUnitOfWork
|
||
|
|
{
|
||
|
|
Task BeginTranAsync();
|
||
|
|
Task CommitTranAsync();
|
||
|
|
Task RollbackTranAsync();
|
||
|
|
}
|
||
|
|
}
|