/src/SampleLibrary/SampleGenericImplementation.cs
http://github.com/philiplaureano/LinFu · C# · 19 lines · 17 code · 2 blank · 0 comment · 0 complexity · cfc6c8b1ac6a8e17b8c11298188fe118 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;
- }
- }
- }