public async Task UpdateExchangeRateAsync(ExchangeRateModel model) { await _exchangeRateRepository.UpdateAsync(model.Id, model.Buy, model.Sell); await _unitOfWork.SaveChangesAsync(); }