/// <summary> /// Initializes a new instance of the <see cref="HttpContextUnitOfWorkRegistry"/> class. /// </summary> /// <param name="alternateRegistry">An alternate storage that will be used for threads not associated with any HTTP request.</param> public HttpContextUnitOfWorkRegistry(UnitOfWorkRegistryBase alternateRegistry) { this.alternateRegistry = alternateRegistry; }
/// <summary> /// Initializes a new instance of the <see cref="HttpContextUnitOfWorkRegistry"/> class. /// </summary> /// <param name="alternateRegistry">An alternate storage that will be used for threads not associated with any HTTP request.</param> public HttpContextUnitOfWorkRegistry(UnitOfWorkRegistryBase alternateRegistry) : base(alternateRegistry) { }