Exemplo n.º 1
0
        private async Task FillAggregateHistoryAsync(IAggregateRoot aggregate)
        {
            var history = await Store.GetAsync(aggregate.Id, 0);

            aggregate.LoadFromHistory(history);
        }