Save() public method

public Save ( PayAsYouGoAccount payAsYouGoAccount ) : void
payAsYouGoAccount PPPDDDChap23.EventSourcing.Application.Model.PayAsYouGo.PayAsYouGoAccount
return void
コード例 #1
0
ファイル: ImportTestData.cs プロジェクト: elbandit/PPPDDD
 private void PersistAllUncommittedEvents(PayAsYouGoAccountRepository repo)
 {
     repo.Save(account1);
     repo.Save(account2);
     repo.Save(account3);
     repo.Save(account4);
     repo.Save(account5);
 }