using System.Reflection; namespace Abp.Dependency { /// /// Used to pass needed objects on conventional registration process. /// public interface IConventionalRegistrationContext { /// /// Gets the registering Assembly. /// Assembly Assembly { get; } /// /// Reference to the IOC Container to register types. /// IIocManager IocManager { get; } /// /// Registration configuration. /// ConventionalRegistrationConfig Config { get; } } }