public AnotherConstructorableStub(IStubDependency dependency, IConstructorableStub another)
     : base(dependency, another)
 {
 }
 public ConstructorableStub(IStubDependency dependency, IConstructorableStub another)
 {
     this.Data  = dependency.Data;
     this.Data += another.Data;
 }