/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
- using LinFu.IoC.Configuration;
- namespace SampleLibrary
- {
- [Implements(typeof(ISampleService), LifecycleType.OncePerRequest, ServiceName = "SecondOncePerRequestService")]
- public class SecondOncePerRequestService : FirstOncePerRequestService
- {
- }
- }