public BorgerDkHttpService(string domain) { Endpoint = BorgerDkEndpoint.GetFromDomain(domain); _client = Endpoint.GetClient(); }
public BorgerDkHttpService(BorgerDkEndpoint endpoint) { Endpoint = endpoint; _client = Endpoint.GetClient(); }
public BorgerDkHttpService() { Endpoint = BorgerDkEndpoint.Default; _client = Endpoint.GetClient(); }