From b3d3c4505b916a2f1a4277574fdd176cf0479492 Mon Sep 17 00:00:00 2001 From: maurizuki <62178459+maurizuki@users.noreply.github.com> Date: Tue, 8 Aug 2023 11:18:14 +0200 Subject: [PATCH] Update GetMonthlyAverageRatesAsync.md --- .../ExchangeRatesClient/GetMonthlyAverageRatesAsync.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ECB.Data.ExchangeRates/ExchangeRatesClient/GetMonthlyAverageRatesAsync.md b/docs/ECB.Data.ExchangeRates/ExchangeRatesClient/GetMonthlyAverageRatesAsync.md index f1b0584..2630a0b 100644 --- a/docs/ECB.Data.ExchangeRates/ExchangeRatesClient/GetMonthlyAverageRatesAsync.md +++ b/docs/ECB.Data.ExchangeRates/ExchangeRatesClient/GetMonthlyAverageRatesAsync.md @@ -3,7 +3,7 @@ Returns the monthly average exchange rates of a list of currencies for a specific month. ```csharp -public async Task> GetMonthlyAverageRatesAsync(int month, int year, +public Task> GetMonthlyAverageRatesAsync(int month, int year, params string[] currencies) ``` @@ -36,7 +36,7 @@ A task that represents the asynchronous operation. The task result contains the Returns the monthly average exchange rates of a list of currencies for a specific month range. ```csharp -public async Task> GetMonthlyAverageRatesAsync(int startMonth, int startYear, +public Task> GetMonthlyAverageRatesAsync(int startMonth, int startYear, int endMonth, int endYear, params string[] currencies) ```