Ejemplo n.º 1
0
 public WebService(HttpClient httpClient, ICredentialsDecorator credentialsDecorator, IActionLog log)
 {
     HttpClient            = httpClient;
     _credentialsDecorator = credentialsDecorator;
     _log = log;
 }
Ejemplo n.º 2
0
 public SessionsWebService(HttpClient httpClient, ICredentialsDecorator credentialsDecorator)
     : base(httpClient, credentialsDecorator) {
 }
Ejemplo n.º 3
0
 public ProfileWebService(HttpClient httpClient, ICredentialsDecorator credentialsDecorator, IActionLog log)
     : base(httpClient, credentialsDecorator, log)
 {
 }
Ejemplo n.º 4
0
 public ProfileWebService(HttpClient httpClient, ICredentialsDecorator credentialsDecorator) 
     : base(httpClient, credentialsDecorator) {
 }
Ejemplo n.º 5
0
 public WebService(HttpClient httpClient, ICredentialsDecorator credentialsDecorator)
 {
     HttpClient            = httpClient;
     _credentialsDecorator = credentialsDecorator;
 }
Ejemplo n.º 6
0
 public SessionsWebService(HttpClient httpClient, ICredentialsDecorator credentialsDecorator)
     : base(httpClient, credentialsDecorator)
 {
 }