public MockAmbiguousCtorMatchDependantObject([DependencyInjection(SelectorKey = "named_dep_obj")] MockAmbiguousCtorMatchDependantObject left, [DependencyInjection] MockAmbiguousCtorMatchDependantObject right)
 {
     this.text  = string.Empty;
     this.left  = left;
     this.right = right;
 }
 public MockAmbiguousCtorMatchDependantObject([DependencyInjection] MockAmbiguousCtorMatchDependantObject both)
 {
     this.text  = string.Empty;
     this.left  = both;
     this.right = both;
 }
 public MockAmbiguousCtorMatchDependantObject(object value, MockAmbiguousCtorMatchDependantObject text)
 {
     this.text = null;
 }