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