/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

  1. using LinFu.IoC.Configuration;
  2. namespace SampleLibrary.IOC
  3. {
  4. [Implements(typeof(ISampleService), ServiceName = "internal")]
  5. internal class SampleInternalService : ISampleService
  6. {
  7. public void DoSomething()
  8. {
  9. // Do nothing
  10. }
  11. }
  12. }