Exemplo n.º 1
0
 public ThreadModel(AwfulClient client, HtmlParser parser)
 {
     this.client  = client;
     this.manager = new ThreadPostManager(this.client);
     this.parser  = parser;
 }
Exemplo n.º 2
0
 public IndexModel(AwfulClient client)
 {
     this.client  = client;
     this.manager = new IndexPageManager(this.client);
 }
Exemplo n.º 3
0
 public ForumModel(AwfulClient client, HtmlParser parser)
 {
     this.client  = client;
     this.parser  = parser;
     this.manager = new ThreadListManager(this.client);
 }