public CryptocurrencyDetailsController(ICryptocurrencyDetailsService cryptocurrencyDetailsService)
 {
     _cryptocurrencyDetailsService = cryptocurrencyDetailsService;
 }
Esempio n. 2
0
 public WalletService(IRepository <Wallet> walletRepository, ICryptocurrencyService cryptocurrencyService, ICryptocurrencyDetailsService cryptocurrencyDetailsService)
 {
     _walletRepository             = walletRepository;
     _cryptocurrencyService        = cryptocurrencyService;
     _cryptocurrencyDetailsService = cryptocurrencyDetailsService;
 }