コード例 #1
0
ファイル: AggregateRootFactory.cs プロジェクト: mgce/stocqres
 public object CreateFromSnapshotAsync <T>(IAggregateRoot aggregateRoot, IEnumerable <IEvent> events)
 {
     aggregateRoot.ApplyEvents(events);
     return(aggregateRoot);
 }