/src/SampleLibrary/IOC/SampleInternalService.cs
http://github.com/philiplaureano/LinFu · C# · 13 lines · 11 code · 1 blank · 1 comment · 0 complexity · f1644aa372b913032c3c9212cdc6cb80 MD5 · raw file
- using LinFu.IoC.Configuration;
- namespace SampleLibrary.IOC
- {
- [Implements(typeof(ISampleService), ServiceName = "internal")]
- internal class SampleInternalService : ISampleService
- {
- public void DoSomething()
- {
- // Do nothing
- }
- }
- }