Beispiel #1
0
        // When methods reacting to Executed Command to call corresponding Aggregate method

        public void When(PutStuffInInbox cmd)
        {
            ChangeAgg(cmd.Id, agg => agg.PutStuffInInbox(cmd.RequestId, cmd.StuffDescription, _time));
        }
 // When methods reacting to Executed Command to call corresponding Aggregate method
 public void When(PutStuffInInbox cmd)
 {
     ChangeAgg(cmd.Id, agg => agg.PutStuffInInbox(cmd.RequestId, cmd.StuffDescription, _time));
 }