Example #1
0
 public 利用者を登録するCommand(利用者のID id, 氏名 _氏名) : base(id) => 氏名 = _氏名;
Example #2
0
 public void Apply(IReadModelContext context, IDomainEvent <利用者, 利用者のID, 利用者を登録した> domainEvent)
 {
     利用者のID = domainEvent.AggregateIdentity;
     氏名     = domainEvent.AggregateEvent.氏名;
 }