Commit e5648bfb authored by 阿星Plus's avatar 阿星Plus

UnitOfWork

parent 4e2a93fc
using System;
using System.Collections.Generic;
using System.Text;
namespace Plus.Domain.Uow
{
public interface IActiveUnitOfWork
{
}
}
using System;
using System.Collections.Generic;
using System.Text;
namespace Plus.Domain.Uow
{
public interface IUnitOfWork : IActiveUnitOfWork, IUnitOfWorkCompleteHandle
{
}
}
\ No newline at end of file
using System;
using System.Collections.Generic;
using System.Text;
namespace Plus.Domain.Uow
{
public interface IUnitOfWorkCompleteHandle
{
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment