/src/SampleLibrary/FirstSingletonService.cs
http://github.com/philiplaureano/LinFu · C# · 13 lines · 12 code · 1 blank · 0 comment · 0 complexity · a98910dfb0e98e71af1b530b2314c27f 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.Singleton, ServiceName="First")]
- public class FirstSingletonService : ISampleService
- {
- }
- }