public static ClassWithoutParameterlessConstructor Create()
 {
     return(new ClassWithoutParameterlessConstructor(AnotherClassWithoutParameterlessConstructor.Create()));
 }
 public ClassWithoutParameterlessConstructor(AnotherClassWithoutParameterlessConstructor fieldValue)
 {
     this.Field = fieldValue;
 }