/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
- namespace SampleLibrary.IOC
- {
- public class SampleClassWithNonServiceArgument
- {
- public SampleClassWithNonServiceArgument(string value)
- {
- Value = value;
- }
- // This is just a dummy constructor that
- // will be used to confuse the constructor resolver
- public SampleClassWithNonServiceArgument(string arg1, string arg2)
- {
- }
- // This is just another dummy constructor that
- // will be used to confuse the constructor resolver
- public SampleClassWithNonServiceArgument(string arg1, string arg2, string arg3)
- {
- }
- public string Value { get; }
- }
- }