/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
- using LinFu.IoC.Interfaces;
- using LinFu.Reflection;
- namespace LinFu.IoC.Configuration
- {
- /// <summary>
- /// Represents service classes that need to be initialized
- /// every time a particular <see cref="IServiceContainer" />
- /// instance creates that type.
- /// </summary>
- public interface IInitialize : IInitialize<IServiceContainer>
- {
- }
- }