/src/SampleLibrary/IOC/SampleGenericImplementation.cs
http://github.com/philiplaureano/LinFu · C# · 16 lines · 13 code · 3 blank · 0 comment · 0 complexity · b26a1cbc04791a61cf617bfcd82d7dd1 MD5 · raw file
- using LinFu.IoC.Configuration;
- using LinFu.IoC.Interfaces;
- namespace SampleLibrary
- {
- public class SampleGenericImplementation<T> : ISampleGenericService<T>, IInitialize
- {
- public void Initialize(IServiceContainer source)
- {
- Called = true;
- }
- public bool Called { get; private set; }
- }
- }