Explorar el Código

add captransaction interface.

master
Savorboard hace 6 años
padre
commit
f23f53babf
Se han modificado 1 ficheros con 15 adiciones y 0 borrados
  1. +15
    -0
      src/DotNetCore.CAP/ICapTransaction.cs

+ 15
- 0
src/DotNetCore.CAP/ICapTransaction.cs Ver fichero

@@ -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();
}
}

Cargando…
Cancelar
Guardar