/src/SampleLibrary/IOC/SampleClassWithNonServiceArgument.cs

http://github.com/philiplaureano/LinFu · C# · 24 lines · 17 code · 3 blank · 4 comment · 0 complexity · 3e2a700a39d2ea5f766ad3ed8926d4ef MD5 · raw file

  1. namespace SampleLibrary.IOC
  2. {
  3. public class SampleClassWithNonServiceArgument
  4. {
  5. public SampleClassWithNonServiceArgument(string value)
  6. {
  7. Value = value;
  8. }
  9. // This is just a dummy constructor that
  10. // will be used to confuse the constructor resolver
  11. public SampleClassWithNonServiceArgument(string arg1, string arg2)
  12. {
  13. }
  14. // This is just another dummy constructor that
  15. // will be used to confuse the constructor resolver
  16. public SampleClassWithNonServiceArgument(string arg1, string arg2, string arg3)
  17. {
  18. }
  19. public string Value { get; }
  20. }
  21. }