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