Example #1
0
 // Since the API should continue, there is no sense in using a date time here
 // if the user wants a different date then he should use the GetBulkFromGivenDateTime
 // otherwise it makes more sense to continue from the last point
 public List <PurchaseInfo> ContinueToNextBulk(string requestId, int bulkSize)
 {
     return(_dataFetcher.ContinueToNextBulk(requestId, bulkSize));
 }
Example #2
0
 // Since the API should continue, there is no sense in using a date time here
 // if the user wants a different date then he should use the GetBulkFromGivenDateTime
 // otherwise it makes more sense to continue from the last position
 // could also consider using the row index as a return value
 public int ContinueToNextBulk(int startFromPosition, int bulkSize, out List <PurchaseInfo> result)
 {
     return(_dataFetcher.ContinueToNextBulk(startFromPosition, bulkSize, out result));
 }