public DecoratorWithNoInterface(DecoratorWithNoInterface decoratee)
 {
     TestService10 = decoratee;
 }
Esempio n. 2
0
 public TestService11WithConcreteDependency(TestService10 testService10)
 {
     TestService10 = testService10;
 }