public IActionResult CurrencyConverter(string ammountSend, int accountSenderId, int accountReceiverId)
        {
            decimal ammountReceive = exchangeRateService.CurrencyConverter(ammountSend, accountSenderId, accountReceiverId);

            return(Json(ammountReceive));
        }