/src/SampleLibrary/IOC/SecondOncePerRequestService.cs

http://github.com/philiplaureano/LinFu · C# · 9 lines · 8 code · 1 blank · 0 comment · 0 complexity · c47961547ef462d76ebe6e4a4cfbae54 MD5 · raw file

  1. using LinFu.IoC.Configuration;
  2. namespace SampleLibrary
  3. {
  4. [Implements(typeof(ISampleService), LifecycleType.OncePerRequest, ServiceName = "SecondOncePerRequestService")]
  5. public class SecondOncePerRequestService : FirstOncePerRequestService
  6. {
  7. }
  8. }