/src/SampleLibrary/FirstOncePerRequestService.cs

http://github.com/philiplaureano/LinFu · C# · 13 lines · 12 code · 1 blank · 0 comment · 0 complexity · b515fcf22591248ed08bc144dbc85436 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.OncePerRequest, ServiceName="FirstOncePerRequestService")]
  9. public class FirstOncePerRequestService : ISampleService
  10. {
  11. }
  12. }