/src/SampleLibrary/IOC/SampleClassWithServiceEnumerableAsConstructorArgument.cs
http://github.com/philiplaureano/LinFu · C# · 14 lines · 12 code · 2 blank · 0 comment · 0 complexity · 1e0180c4611a6d19c656825dc53e8072 MD5 · raw file
- using System.Collections.Generic;
- namespace SampleLibrary.IOC
- {
- public class SampleClassWithServiceEnumerableAsConstructorArgument
- {
- public SampleClassWithServiceEnumerableAsConstructorArgument(IEnumerable<ISampleService> services)
- {
- Services = services;
- }
- public IEnumerable<ISampleService> Services { get; }
- }
- }