/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
- using System;
- namespace SampleLibrary.IOC
- {
- public class SampleClassWithUnmarkedInjectionProperties : ISampleService
- {
- public ISampleService SomeProperty { get; set; }
- public void DoSomething()
- {
- throw new NotImplementedException();
- }
- }
- }