Exemplo n.º 1
0
        public async Task UpdateExchangeRateAsync(ExchangeRateModel model)
        {
            await _exchangeRateRepository.UpdateAsync(model.Id, model.Buy, model.Sell);

            await _unitOfWork.SaveChangesAsync();
        }