namespace Abp.Dependency
{
///
/// This interface is used to register dependencies by conventions.
///
///
/// Implement this interface and register to method to be able
/// to register classes by your own conventions.
///
public interface IConventionalDependencyRegistrar
{
///
/// Registers types of given assembly by convention.
///
/// Registration context
void RegisterAssembly(IConventionalRegistrationContext context);
}
}