public ClassWithNestedDependencies(IDependencyWithDependencies dependencyWithDependencies)
 {
     DependencyWithDependencies = dependencyWithDependencies;
 }
Exemple #2
0
 public ServiceWithDependencies(IDependency3 dep3, IDependencyWithDependencies dep4)
 {
     DependencyObject  = dep3;
     DependencyObject2 = dep4;
 }