/src/SampleLibrary/SampleGenericImplementation.cs

http://github.com/philiplaureano/LinFu · C# · 19 lines · 17 code · 2 blank · 0 comment · 0 complexity · cfc6c8b1ac6a8e17b8c11298188fe118 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
  12. {
  13. get;
  14. private set;
  15. }
  16. }
  17. }