コード例 #1
0
 public Task <IReadOnlyCollection <ExternalTrade> > GetExternalTradesAsync(DateTime startDate, DateTime endDate,
                                                                           int limit)
 {
     return(_externalTradeRepository.GetAsync(startDate, endDate, limit));
 }
コード例 #2
0
 public Task <(IReadOnlyList <ExternalTrade> entities, string continuationToken)> GetAsync(
     DateTime startDate, DateTime endDate, int?limit, string continuationToken)
 {
     return(_externalTradeRepository.GetAsync(startDate, endDate, limit, continuationToken));
 }
コード例 #3
0
 public Task <IReadOnlyCollection <ExternalTrade> > GetAsync(DateTime startDate, DateTime endDate, string exchange,
                                                             string assetPairId, int limit)
 {
     return(_externalTradeRepository.GetAsync(startDate, endDate, exchange, assetPairId, limit));
 }