Skip to content

Instantly share code, notes, and snippets.

@jezell
Created October 9, 2008 19:28
Show Gist options
  • Save jezell/15854 to your computer and use it in GitHub Desktop.
Save jezell/15854 to your computer and use it in GitHub Desktop.
public interface ISubscriptionDB
{
void CreateListener(ListenerEndpoint endpoint);
void CreateSubscription(SubscriptionEndpoint subscription);
void DeleteListener(Guid endpointId);
void DeleteSubscription(Guid id);
System.Collections.Generic.IEnumerable<ListenerEndpoint> LoadListenerEndpoints();
System.Collections.Generic.IEnumerable<SubscriptionEndpoint> LoadSubscriptionEndpoints();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment