コード例 #1
0
 public void Apply(MyAggregate aggregate)
 {
     aggregate.DCount++;
 }
コード例 #2
0
 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);
 }