/src/SampleLibrary/IOC/SampleClassWithUnmarkedInjectionProperties.cs

http://github.com/philiplaureano/LinFu · C# · 15 lines · 12 code · 3 blank · 0 comment · 0 complexity · fb33b4dba315dde82b49b562bb2cbb92 MD5 · raw file

  1. using System;
  2. namespace SampleLibrary.IOC
  3. {
  4. public class SampleClassWithUnmarkedInjectionProperties : ISampleService
  5. {
  6. public ISampleService SomeProperty { get; set; }
  7. public void DoSomething()
  8. {
  9. throw new NotImplementedException();
  10. }
  11. }
  12. }