Exemple #1
0
 public BatchProcessBooks(BatchOptions opts)
 {
     this._options = opts;
     if (_options.VeryVerbose)
     {
         _options.Verbose = true;
     }
     _opdsClient = new OpdsClient(opts);
 }
Exemple #2
0
 private static int BatchAndReturnExitCode(BatchOptions opts)
 {
     return(new BatchProcessBooks(opts).RunBatch());
 }