13 lines
310 B
C#
13 lines
310 B
C#
using Knoks.CryptoExchanges.Entities;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Knoks.CryptoExchanges.Data.Interfaces
|
|
{
|
|
public interface IExchangeDao
|
|
{
|
|
Task<IEnumerable<Exchange>> GetExchanges(int? exchangeId = null);
|
|
}
|
|
} |