Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…

using System.Threading.Tasks; | |
namespace OpenServiceBroker.Catalogs | |
{ | |
/// <summary> | |
/// Provides access to the catalog of services that the service broker offers | |
/// </summary> | |
public interface ICatalogService | |
{ | |
/// <summary> | |
/// Gets the catalog of services that the service broker offers. | |
/// </summary> | |
Task<Catalog> GetCatalogAsync(); | |
} | |
} |