CaffGeek/MBACNationals

View on GitHub
Edument.CQRS/IEventStore.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;

namespace Edument.CQRS
{
    public interface IEventStore
    {
        IEnumerable LoadEventsFor<TAggregate>(Guid id);
        IEnumerable LoadAllEvents();
        void SaveEventsFor<TAggregate>(Guid? id, int eventsLoaded, ArrayList newEvents);
    }
}