CQRS.Tests.CQRS.EventSourcing.EventStoreSessionTests.MockEventStore.GetAggregateHistory C# (CSharp) 메소드

GetAggregateHistory() 공개 메소드

public GetAggregateHistory ( System.Guid id ) : IEnumerable
id System.Guid
리턴 IEnumerable
            public IEnumerable<IAggregateRootEvent> GetAggregateHistory(Guid id) { throw new NotSupportedException(); }
            public void SaveEvents(IEnumerable<IAggregateRootEvent> events) { SavedEvents.AddRange(events); }