public TestAggregateRoot(TestAggregateId id) { var @event = new TestCreateEvent(id); Apply(@event); }
public void When(TestCreateEvent e) { Id = e.Id; }