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