ICurrentUnitOfWorkProvider.cs 411 B

1234567891011121314
  1. namespace Abp.Domain.Uow
  2. {
  3. /// <summary>
  4. /// Used to get/set current <see cref="IUnitOfWork"/>.
  5. /// </summary>
  6. public interface ICurrentUnitOfWorkProvider
  7. {
  8. /// <summary>
  9. /// Gets/sets current <see cref="IUnitOfWork"/>.
  10. /// Setting to null returns back to outer unit of work where possible.
  11. /// </summary>
  12. IUnitOfWork Current { get; set; }
  13. }
  14. }