/src/SampleLibrary/IOC/SampleClassWithInjectionProperties.cs
http://github.com/philiplaureano/LinFu · C# · 16 lines · 13 code · 3 blank · 0 comment · 0 complexity · 1ddb9a541d15d2c949127c622c1816e2 MD5 · raw file
- using System;
- using LinFu.IoC.Configuration;
- namespace SampleLibrary.IOC
- {
- public class SampleClassWithInjectionProperties : ISampleService
- {
- [Inject] public ISampleService SomeProperty { get; set; }
- public void DoSomething()
- {
- throw new NotImplementedException();
- }
- }
- }