public void TheOtherThingMustChange(int anInt, string aString)
 {
     SomeOtherThing = new SomeOtherThing(anInt, aString);
 }
 public AThingAsEntity(string description, int anInt, string aString)
 {
     Description    = description;
     SomeOtherThing = new SomeOtherThing(anInt, aString);
 }