public void Apply(MyAggregate aggregate)
 {
     aggregate.DCount++;
 }
 protected bool Equals(MyAggregate other)
 {
     return(Id.Equals(other.Id) && ACount == other.ACount && BCount == other.BCount && CCount == other.CCount && DCount == other.DCount && ECount == other.ECount);
 }