Newer
Older
TestingWithoutInterfaces / src / ApplicationCore / Interfaces / IExchangeRateClient.cs
@Derek Comartin Derek Comartin on 5 Dec 2022 253 bytes Init
using System.Threading.Tasks;

namespace Microsoft.eShopWeb.ApplicationCore.Interfaces;

public interface IExchangeRateClient
{
    public Task<decimal> Latest(Currency baseCurrency, Currency toCurrency);
}

public enum Currency
{
    USD,
    CAD
}