예제 #1
0
 public MockAmbiguousCtorMatchDependantObject([DependencyInjection(SelectorKey = "named_dep_obj")]
                                              MockAmbiguousCtorMatchDependantObject left, [DependencyInjection] MockAmbiguousCtorMatchDependantObject right)
 {
     this.text  = string.Empty;
     this.left  = left;
     this.right = right;
 }
예제 #2
0
 public MockAmbiguousCtorMatchDependantObject([DependencyInjection] MockAmbiguousCtorMatchDependantObject both)
 {
     this.text  = string.Empty;
     this.left  = both;
     this.right = both;
 }
예제 #3
0
 public MockAmbiguousCtorMatchDependantObject(object value, MockAmbiguousCtorMatchDependantObject text)
 {
     this.text = null;
 }