Exemple #1
0
 public ReaderAccount(HttpClient httpClient, ReaderUrls urls)
 {
     this.httpClient = httpClient;
     this.urls = urls;
 }
Exemple #2
0
 public ReaderAccount(string email, string password)
 {
     this.httpClient = new AuthorizedHttpClient(email, password);
     this.urls = new ReaderUrls();
 }