Example #1
0
 public _401GamesCommandHandler(
     _401GamesSource source,
     _401GamesParser parser,
     _401GamesCleaner cleaner) : base(source)
 {
     this.Commands.Add(parser);
     this.Commands.Add(cleaner);
 }
 public _401GamesCleaner(_401GamesSource source)
 {
     this._source = source;
 }
Example #3
0
 public _401GamesParser(IDocumentLoader documentLoader, _401GamesSource source)
     : base(documentLoader, source)
 {
 }