using Castle.Core; namespace Abp { /// /// Defines interface for objects those should be Initialized before using it. /// If the object resolved using dependency injection, /// method is automatically called just after creation of the object. /// public interface IShouldInitialize : IInitializable { } }