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