/src/SampleLibrary/IOC/SampleClassWithServiceArrayAsConstructorArgument.cs
C# | 12 lines | 11 code | 1 blank | 0 comment | 0 complexity | 4e04988fed0e35eace00b8e4971bd211 MD5 | raw file
1namespace SampleLibrary.IOC 2{ 3 public class SampleClassWithServiceArrayAsConstructorArgument 4 { 5 public SampleClassWithServiceArrayAsConstructorArgument(ISampleService[] services) 6 { 7 Services = services; 8 } 9 10 public ISampleService[] Services { get; } 11 } 12}