Ejemplo n.º 1
0
 /// <summary>
 /// Creates a new batch from a stats response
 /// </summary>
 public static Batch NewFromResponse(getBatchStatisticsResponse batch)
 {
     return new Batch {
         ID = batch.batchDetails.batchId,
         PaymentMethod = batch.batchDetails.paymentMethod,
         SettledOn = batch.batchDetails.settlementTimeUTC,
         State = batch.batchDetails.settlementState,
         Charges = Charge.NewFromStat(batch.batchDetails.statistics)
     };
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Creates a new batch from a stats response
 /// </summary>
 public static List<Batch> NewFromResponse(getBatchStatisticsResponse batch)
 {
     var result = new List<Batch>();
     if (null != batch && null != batch.batch)
     {
         //foreach (
         var item = batch.batch;
         {
             result.Add(new Batch
             {
                 Charges = Charge.NewFromStat(item.statistics),
                 ID = item.batchId,
                 PaymentMethod = item.paymentMethod,
                 SettledOn = item.settlementTimeUTC,
                 State = item.settlementState,
                 MarketType = item.marketType,
                 Product = item.product
             });
         }
     }
     return result;
 }