Exemplo n.º 1
0
 public CnpBatch(Dictionary <string, string> config)
 {
     this.config = new ConfigManager(config);
     this.InitializeRequest();
 }
Exemplo n.º 2
0
 /*
  * Construct a CNP Batch using the built-in configuration.
  */
 public CnpBatch()
 {
     this.config = new ConfigManager();
     this.InitializeRequest();
 }
Exemplo n.º 3
0
 /*
  * Construct a CNP Batch using the given configuration.
  */
 public CnpBatch(ConfigManager config)
 {
     this.config = config;
     this.InitializeRequest();
 }
Exemplo n.º 4
0
 /*
  * Creates a batch request wrapper.
  */
 public CnpBatchRequest(ConfigManager config)
 {
     this.config       = config;
     this.batchRequest = new batchRequest();
 }