示例#1
0
 void Apply <T>(T change)
     where T : DomainEvent
 {
     _methodCaller.CallByConvention(change);
 }
示例#2
0
 public void Apply <T>(T change)
     where T : DomainEvent
 {
     _recorder.Record(change);
     _methodCaller.CallByConvention(change);
 }