public RecentQuestionsGetter(JsonStore store, IWebRequester web, string[] tags, string site = "stackoverflow", int pagesize = 30) { _store = store; _web = web; Tags = tags; Site = site; Pagesize = pagesize; }
public ThrottleChecker(JsonStore store) { _store = store; }
public RecentQuestionsGetter(JsonStore store, IWebRequester web, string site = "stackoverflow", int pagesize = 30) : this(store, web, new string[0], site) { }