/src/SampleLibrary/IOC/SampleClassWithNamedParameters.cs
http://github.com/philiplaureano/LinFu · C# · 12 lines · 11 code · 1 blank · 0 comment · 0 complexity · 9bbfe402a96349ede93e668a4087b7fc MD5 · raw file
- namespace SampleLibrary.IOC
- {
- public class SampleClassWithNamedParameters
- {
- public SampleClassWithNamedParameters(ISampleService otherService)
- {
- ServiceInstance = otherService;
- }
- public ISampleService ServiceInstance { get; }
- }
- }