Exemplo n.º 1
0
 public InjectionTarget(ITestSingletone testService)
 {
     InjectedService = testService;
 }
Exemplo n.º 2
0
 public CustomParametersTarget2(ITestSingletone testSingletone, string stringParam, int intParam, int intParam2)
     : base(testSingletone, stringParam, intParam)
 {
     IntFromParam2 = intParam2;
 }
 public CustomParametersTarget(ITestSingletone testSingletone, string stringParam, int intParam)
 {
     InjectedService = testSingletone;
     StringFromParam = stringParam;
     IntFromParam = intParam;
 }