public ATMService(ICurrencyHttpService currencyHttpService, IATMRepository aTMRepository) { _currencyHttpService = currencyHttpService; _aTMRepository = aTMRepository; }
public ExchangeService(ICurrencyHttpService currencyHttpService) { _currencyHttpService = currencyHttpService; }
public CurrencyHttpService() { _currencyHttpService = RestService.For <ICurrencyHttpService>("https://api.exchangeratesapi.io/latest"); }
public ATMService(IATMRepository aTMRepository, ICurrencyHttpService currencyHttpService) { _aTMRepository = aTMRepository; _currencyHttpService = currencyHttpService; }