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