/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

  1. using System;
  2. using LinFu.IoC.Configuration;
  3. namespace SampleLibrary.IOC.BugFixes
  4. {
  5. [Implements(typeof(IMyService))]
  6. public class MyService : IMyService
  7. {
  8. public void Foo()
  9. {
  10. throw new NotImplementedException();
  11. }
  12. }
  13. }