Esempio n. 1
0
 public HomeController(ILogger <HomeController> logger, IObtenirPrixCrypto obtenirPrixCrypto, ICryptoCurrencyModelFactory cryptoCurrencyModelFactory)
 {
     _logger                     = logger;
     _obtenirPrixCrypto          = obtenirPrixCrypto;
     _cryptoCurrencyModelFactory = cryptoCurrencyModelFactory;
 }
Esempio n. 2
0
 public CryptoCurrencyController(ICryptoCurrencyModelFactory cryptoCurrencyModelFactory, ICryptocurrencyRepository cryptocurrencyRepository)
 {
     _cryptoCurrencyModelFactory = cryptoCurrencyModelFactory;
     _cryptocurrencyRepository   = cryptocurrencyRepository;
 }