using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using CH.CryptoStats.Abstractions; namespace CH.CryptoStats.CoinGecko; public class CoinGecko : ICryptoStats { public Task GetCryptoStats(string cryptoName, string currency, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task ParseCryptoStats(HttpResponseMessage result, string currency, CancellationToken cancellationToken) { throw new NotImplementedException(); } }