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) ```