Automated teller machine emulation.
namespace SergeyDrozdovATM.BLL
{
public class CurrencyRate
{
public int Id { get; set; }
public Currency SourceCurrency { get; set; }
public Currency DestinationCurrency { get; set; }
public decimal Rate { get; set; }
}
}