namespace Abp.Domain.Uow
{
///
/// Used to get/set current .
///
public interface ICurrentUnitOfWorkProvider
{
///
/// Gets/sets current .
/// Setting to null returns back to outer unit of work where possible.
///
IUnitOfWork Current { get; set; }
}
}