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