/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

  1. namespace SampleLibrary.IOC
  2. {
  3. public class SampleClassWithServiceArrayAsConstructorArgument
  4. {
  5. public SampleClassWithServiceArrayAsConstructorArgument(ISampleService[] services)
  6. {
  7. Services = services;
  8. }
  9. public ISampleService[] Services { get; }
  10. }
  11. }