瀏覽代碼

add captransaction interface.

master
Savorboard 6 年之前
父節點
當前提交
f23f53babf
共有 1 個檔案被更改,包括 15 行新增0 行删除
  1. +15
    -0
      src/DotNetCore.CAP/ICapTransaction.cs

+ 15
- 0
src/DotNetCore.CAP/ICapTransaction.cs 查看文件

@@ -0,0 +1,15 @@
using System;

namespace DotNetCore.CAP
{
public interface ICapTransaction : IDisposable
{
bool AutoCommit { get; set; }

object DbTransaction { get; set; }

void Commit();

void Rollback();
}
}

Loading…
取消
儲存