コード例 #1
0
 public ClassWithNestedDependencies(IDependencyWithDependencies dependencyWithDependencies)
 {
     DependencyWithDependencies = dependencyWithDependencies;
 }
コード例 #2
0
ファイル: ContainerTests.cs プロジェクト: sbartlett/IOC
 public ServiceWithDependencies(IDependency3 dep3, IDependencyWithDependencies dep4)
 {
     DependencyObject  = dep3;
     DependencyObject2 = dep4;
 }