mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-20 00:16:37 +08:00
11 lines
251 B
C#
11 lines
251 B
C#
namespace Yi.Framework.Infrastructure.Uow
|
|
{
|
|
internal class DefaultUnitOfWorkManager : IUnitOfWorkManager
|
|
{
|
|
public IUnitOfWork CreateContext(bool isTran = true)
|
|
{
|
|
return new DefaultUnitOfWork();
|
|
}
|
|
}
|
|
}
|