Example #1
0
 public BorgerDkHttpService(string domain)
 {
     Endpoint = BorgerDkEndpoint.GetFromDomain(domain);
     _client  = Endpoint.GetClient();
 }
Example #2
0
 public BorgerDkHttpService(BorgerDkEndpoint endpoint)
 {
     Endpoint = endpoint;
     _client  = Endpoint.GetClient();
 }
Example #3
0
 public BorgerDkHttpService()
 {
     Endpoint = BorgerDkEndpoint.Default;
     _client  = Endpoint.GetClient();
 }