/src/SampleLibrary/FirstSingletonService.cs

http://github.com/philiplaureano/LinFu · C# · 13 lines · 12 code · 1 blank · 0 comment · 0 complexity · a98910dfb0e98e71af1b530b2314c27f MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using LinFu.IoC.Configuration;
  6. namespace SampleLibrary
  7. {
  8. [Implements(typeof(ISampleService), LifecycleType.Singleton, ServiceName="First")]
  9. public class FirstSingletonService : ISampleService
  10. {
  11. }
  12. }