IShouldInitialize.cs 407 B

1234567891011121314
  1. using Castle.Core;
  2. namespace Abp
  3. {
  4. /// <summary>
  5. /// Defines interface for objects those should be Initialized before using it.
  6. /// If the object resolved using dependency injection, <see cref="IInitializable.Initialize"/>
  7. /// method is automatically called just after creation of the object.
  8. /// </summary>
  9. public interface IShouldInitialize : IInitializable
  10. {
  11. }
  12. }