/src/LinFu.IoC.Common/IInitialize.cs

http://github.com/philiplaureano/LinFu · C# · 14 lines · 8 code · 1 blank · 5 comment · 0 complexity · bdce187ca9ba34ad6b3fa3412f66db8f MD5 · raw file

  1. using LinFu.IoC.Interfaces;
  2. using LinFu.Reflection;
  3. namespace LinFu.IoC.Configuration
  4. {
  5. /// <summary>
  6. /// Represents service classes that need to be initialized
  7. /// every time a particular <see cref="IServiceContainer" />
  8. /// instance creates that type.
  9. /// </summary>
  10. public interface IInitialize : IInitialize<IServiceContainer>
  11. {
  12. }
  13. }