Skip to content

Instantly share code, notes, and snippets.

@darrencauthon
Created April 26, 2011 17:31
Show Gist options
  • Save darrencauthon/942704 to your computer and use it in GitHub Desktop.
Save darrencauthon/942704 to your computer and use it in GitHub Desktop.
Sample SimpleCQRS Runtime
public class AppRuntime : SimpleCqrsRuntime<UnityServiceLocator>
{
private readonly string connectionString;
public AppRuntime(string connectionString)
{
this.connectionString = connectionString;
}
protected override IEventStore GetEventStore(IServiceLocator serviceLocator)
{
return new SqlServerEventStore(new SqlServerConfiguration(connectionString), new JsonDomainEventSerializer());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment