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