/src/SampleLibrary/IOC/BugFixes/MyService.cs
http://github.com/philiplaureano/LinFu · C# · 14 lines · 13 code · 1 blank · 0 comment · 0 complexity · f86da5237fa8acfc51a8da2c2305ca9e MD5 · raw file
- using System;
- using LinFu.IoC.Configuration;
- namespace SampleLibrary.IOC.BugFixes
- {
- [Implements(typeof(IMyService))]
- public class MyService : IMyService
- {
- public void Foo()
- {
- throw new NotImplementedException();
- }
- }
- }