mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
19 lines
466 B
C#
19 lines
466 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using BTCPayServer.Rating;
|
|||
|
using BTCPayServer.Services.Rates;
|
|||
|
|
|||
|
namespace BTCPayServer.Tests.Mocks
|
|||
|
{
|
|||
|
public class MockRateProvider : IRateProvider
|
|||
|
{
|
|||
|
public ExchangeRates ExchangeRates { get; set; } = new ExchangeRates();
|
|||
|
public Task<ExchangeRates> GetRatesAsync()
|
|||
|
{
|
|||
|
return Task.FromResult(ExchangeRates);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|