Skip to content

Commit

Permalink
Update GetMonthlyAverageRatesAsync.md
Browse files Browse the repository at this point in the history
  • Loading branch information
maurizuki committed Aug 8, 2023
1 parent f045bfb commit b3d3c45
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Returns the monthly average exchange rates of a list of currencies for a specific month.

```csharp
public async Task<List<ExchangeRate>> GetMonthlyAverageRatesAsync(int month, int year,
public Task<List<ExchangeRate>> GetMonthlyAverageRatesAsync(int month, int year,
params string[] currencies)
```

Expand Down Expand Up @@ -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<List<ExchangeRate>> GetMonthlyAverageRatesAsync(int startMonth, int startYear,
public Task<List<ExchangeRate>> GetMonthlyAverageRatesAsync(int startMonth, int startYear,
int endMonth, int endYear, params string[] currencies)
```

Expand Down

0 comments on commit b3d3c45

Please sign in to comment.