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