public async Task <PriceResponse> ConvertedPriceResponse(decimal price, string sourceCurency, string targetCurrency)
        {
            var newPrice = await _currencyConverter.ConvertedPrice(price, sourceCurency, targetCurrency);

            return(new PriceResponse
            {
                Price = newPrice
                ,
                Currency = targetCurrency
            });
        }