Пример #1
0
 /// <summary>
 /// Create a new instance of the Processor, passing in the rules used
 /// to process the request.
 /// </summary>
 /// <param name="Rules">The <see cref="CallbackRules"/> object
 /// used for the Process Request.</param>
 /// <param name="currency">The currency associated with prices in a
 /// Checkout API request.</param>
 public CallbackProcessor(CallbackRules Rules, string currency)
 {
     _Rules    = Rules;
     _currency = currency;
 }
Пример #2
0
 /// <summary>
 /// Create a new instance of the Processor, passing in the rules used
 /// to process the request.
 /// </summary>
 /// <param name="Rules">The <see cref="CallbackRules"/> object
 /// used for the Process Request.</param>
 public CallbackProcessor(CallbackRules Rules)
 {
     _Rules    = Rules;
     _currency = ch.DefaultCurrency;
 }
Пример #3
0
 public CallbackProcessor(CallbackRules Rules)
 {
     _Rules = Rules;
 }
Пример #4
0
 public CallbackProcessor(CallbackRules Rules)
 {
     _Rules = Rules;
 }
 /// <summary>
 /// Create a new instance of the Processor, passing in the rules used
 /// to process the request.
 /// </summary>
 /// <param name="Rules">The <see cref="CallbackRules"/> object 
 /// used for the Process Request.</param>
 /// <param name="currency">The currency associated with prices in a 
 /// Checkout API request.</param>
 public CallbackProcessor(CallbackRules Rules, string currency)
 {
     _Rules = Rules;
       _currency = currency;
 }
 /// <summary>
 /// Create a new instance of the Processor, passing in the rules used
 /// to process the request.
 /// </summary>
 /// <param name="Rules">The <see cref="CallbackRules"/> object 
 /// used for the Process Request.</param>
 public CallbackProcessor(CallbackRules Rules)
 {
     _Rules = Rules;
       _currency = ch.DefaultCurrency;
 }