コード例 #1
0
 public CoinmarketImporter(ICoinmarketClient coinmarketClient, ICoinmarketParser coinmarketParser,
                           ICryptocurrencyRepository cryptocurrencyRepository)
 {
     _coinmarketClient         = coinmarketClient;
     _coinmarketParser         = coinmarketParser;
     _cryptocurrencyRepository = cryptocurrencyRepository;
 }
コード例 #2
0
 public CryptoBL(ICryptocurrencyRepository repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }
コード例 #3
0
 public CryptoCurrencyController(ICryptoCurrencyModelFactory cryptoCurrencyModelFactory, ICryptocurrencyRepository cryptocurrencyRepository)
 {
     _cryptoCurrencyModelFactory = cryptoCurrencyModelFactory;
     _cryptocurrencyRepository   = cryptocurrencyRepository;
 }