public async Task <List <CurrencyPrice> > Handle(GetCoinPriceListQuery request, CancellationToken cancellationToken)
        {
            var currencyList = await _quotesRepository.GetCoinPriceByCoinCode(request.CoinCode);

            return(_mapper.Map <List <CurrencyPrice> >(currencyList));
        }