Exemple #1
0
 public WebService(HttpClient httpClient, ICredentialsDecorator credentialsDecorator, IActionLog log)
 {
     HttpClient            = httpClient;
     _credentialsDecorator = credentialsDecorator;
     _log = log;
 }
Exemple #2
0
 public SessionsWebService(HttpClient httpClient, ICredentialsDecorator credentialsDecorator)
     : base(httpClient, credentialsDecorator) {
 }
 public ProfileWebService(HttpClient httpClient, ICredentialsDecorator credentialsDecorator, IActionLog log)
     : base(httpClient, credentialsDecorator, log)
 {
 }
Exemple #4
0
 public ProfileWebService(HttpClient httpClient, ICredentialsDecorator credentialsDecorator) 
     : base(httpClient, credentialsDecorator) {
 }
Exemple #5
0
 public WebService(HttpClient httpClient, ICredentialsDecorator credentialsDecorator)
 {
     HttpClient            = httpClient;
     _credentialsDecorator = credentialsDecorator;
 }
Exemple #6
0
 public SessionsWebService(HttpClient httpClient, ICredentialsDecorator credentialsDecorator)
     : base(httpClient, credentialsDecorator)
 {
 }