Skip to content

Instantly share code, notes, and snippets.

View jeffgoo's full-sized avatar

Jeff Gustafson jeffgoo

  • Trupanion
  • Seattle
  • 22:16 (UTC -12:00)
View GitHub Profile
@ToJans
ToJans / AggregateRootStore.cs
Created September 1, 2010 10:16
combining CQRS, Event sourcing and BDD
using System;
using System.Collections.Generic;
using System.Linq;
namespace SimpleCQRS2.Framework.Services
{
public class AggregateRootStore : IAggregateRootStore
{
public IAggregateRoot GetAggregateRoot(Type aggregateRootType, Guid aggregateRootId)
{