private void Apply(TransformationDone e)
 {
     Value = e.Value;
 }
 public Result <TestAggregate> DoTransformationWith(string value)
 {
     ApplyChange(TransformationDone.Of(Id.Id, value));
     return(Result.Ok(this));
 }