public async Task HandleAsync(ShipmentStarted @event)
 {
     await ExecuteSaveAsync(@event.AggregateId, model => model.Start());
 }
Exemplo n.º 2
0
 private void Apply(ShipmentStarted evt)
 {
     _status = Status.Started;
 }