Example #1
0
        private static List <CryptocurrencyApi> GetAllApis()
        {
            var cache      = new CryptocurrenciesApiCache();
            var dictionary = (Dictionary <CryptocurrencyAPIProvider, CryptocurrencyApi>)cache.Get();

            return(dictionary.Values.ToList());
        }
Example #2
0
        public static CryptocurrencyApi Get(CryptocurrencyAPIProvider aPIProvider)
        {
            var cache      = new CryptocurrenciesApiCache();
            var dictionary = (Dictionary <CryptocurrencyAPIProvider, CryptocurrencyApi>)cache.Get();

            return(dictionary[aPIProvider]);
        }