/src/UnitTests/IOC/Configuration/SingletonSampleService.cs
http://github.com/philiplaureano/LinFu · C# · 15 lines · 14 code · 1 blank · 0 comment · 0 complexity · 606d1c19743093243f83eda0d1d78f3a MD5 · raw file
- using System;
- using LinFu.IoC.Configuration;
- using SampleLibrary;
- namespace LinFu.UnitTests.IOC.Configuration
- {
- [Implements(typeof(ISampleService), LifecycleType.Singleton)]
- public class SingletonSampleService : ISampleService
- {
- public void DoSomething()
- {
- throw new NotImplementedException();
- }
- }
- }