コード例 #1
0
 internal static PublicEvents.AccountCredited ToPublic(this PrivateEvents.AccountCredited persistedEvent)
 {
     return(new PublicEvents.AccountCredited(persistedEvent.AccountId, persistedEvent.Amount));
 }
コード例 #2
0
ファイル: Account.cs プロジェクト: Smiley95/LDStraining
 private void Apply(PrivateEvents.AccountCredited @event)
 {
     Balance += @event.Amount;
 }