/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

  1. using LinFu.IoC.Configuration;
  2. using LinFu.IoC.Interfaces;
  3. namespace SampleLibrary
  4. {
  5. public class SampleGenericImplementation<T> : ISampleGenericService<T>, IInitialize
  6. {
  7. public void Initialize(IServiceContainer source)
  8. {
  9. Called = true;
  10. }
  11. public bool Called { get; private set; }
  12. }
  13. }