예제 #1
0
 public WebService(HttpClient httpClient, ICredentialsDecorator credentialsDecorator, IActionLog log)
 {
     HttpClient            = httpClient;
     _credentialsDecorator = credentialsDecorator;
     _log = log;
 }
예제 #2
0
 public SessionsWebService(HttpClient httpClient, ICredentialsDecorator credentialsDecorator)
     : base(httpClient, credentialsDecorator) {
 }
예제 #3
0
 public ProfileWebService(HttpClient httpClient, ICredentialsDecorator credentialsDecorator, IActionLog log)
     : base(httpClient, credentialsDecorator, log)
 {
 }
예제 #4
0
 public ProfileWebService(HttpClient httpClient, ICredentialsDecorator credentialsDecorator) 
     : base(httpClient, credentialsDecorator) {
 }
예제 #5
0
파일: WebService.cs 프로젝트: jflam/RTVS
 public WebService(HttpClient httpClient, ICredentialsDecorator credentialsDecorator)
 {
     HttpClient            = httpClient;
     _credentialsDecorator = credentialsDecorator;
 }
예제 #6
0
 public SessionsWebService(HttpClient httpClient, ICredentialsDecorator credentialsDecorator)
     : base(httpClient, credentialsDecorator)
 {
 }