using System; namespace Abp.Dependency { /// /// This interface is used to wrap a scope for batch resolvings in a single using statement. /// It inherits and , so resolved objects can be easily and batch /// manner released by IocResolver. /// In method, is called to dispose the object. /// public interface IScopedIocResolver : IIocResolver, IDisposable { } }