This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
Compoment
/
BPA.CAP
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
add captransaction interface.
master
Savorboard
6 years ago
parent
e6af8ed5bd
commit
f23f53babf
1 changed files
with
15 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+15
-0
src/DotNetCore.CAP/ICapTransaction.cs
+ 15
- 0
src/DotNetCore.CAP/ICapTransaction.cs
View File
@@ -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();
}
}
Write
Preview
Loading…
Cancel
Save