Created
October 9, 2008 19:28
-
-
Save jezell/15854 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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