Example #1
0
 public CoinMarketCapService(ICoinMarketCapCache cache)
 {
     if (cache == null)
     {
         throw new ArgumentNullException(nameof(cache));
     }
     else
     {
         _cache = cache;
     }
 }
Example #2
0
 public HomeController(ICoinMarketCapCache cache)
 {
     _cache = cache;
 }