/src/SampleLibrary/FirstOncePerRequestService.cs
http://github.com/philiplaureano/LinFu · C# · 13 lines · 12 code · 1 blank · 0 comment · 0 complexity · b515fcf22591248ed08bc144dbc85436 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using LinFu.IoC.Configuration;
- namespace SampleLibrary
- {
- [Implements(typeof(ISampleService), LifecycleType.OncePerRequest, ServiceName="FirstOncePerRequestService")]
- public class FirstOncePerRequestService : ISampleService
- {
- }
- }