Exemplo n.º 1
0
        public TestAggregateRoot(TestAggregateId id)
        {
            var @event = new TestCreateEvent(id);

            Apply(@event);
        }
Exemplo n.º 2
0
 public void When(TestCreateEvent e)
 {
     Id = e.Id;
 }