namespace Services { /// /// The endpoint is the central element of the 'Services' assembly. /// public interface IEndpoint { public IAuthService AuthService { get; } public IRecipesService RecipesService { get; } } }