/src/SampleLibrary/IOC/SampleClassWithServiceArrayAsConstructorArgument.cs
http://github.com/philiplaureano/LinFu · C# · 12 lines · 11 code · 1 blank · 0 comment · 0 complexity · 4e04988fed0e35eace00b8e4971bd211 MD5 · raw file
- namespace SampleLibrary.IOC
- {
- public class SampleClassWithServiceArrayAsConstructorArgument
- {
- public SampleClassWithServiceArrayAsConstructorArgument(ISampleService[] services)
- {
- Services = services;
- }
- public ISampleService[] Services { get; }
- }
- }