15 lines
451 B
C#
15 lines
451 B
C#
using Knoks.CryptoExchanges.Entities;
|
|
using Knoks.CryptoExchanges.Entities.Args;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Knoks.CryptoExchanges.Data.Interfaces
|
|
{
|
|
public interface IExchangePairRateDao
|
|
{
|
|
Task UpdateExchangePairRate(int exchangeId, ExchangePairRateArg arg);
|
|
Task<List<LiveRateItem>> GetLiveRates(List<LiveRateItemRequest> searchItems);
|
|
}
|
|
} |