Ejemplo n.º 1
0
 public void GetAllCoins()
 {
     mCoinList       = new List <Data>();
     mNetworkService = new CrytoIndex.Service.NetworkServiceApi(mCoinList);
     mCoinList       = mNetworkService.GetCoinList();
 }
Ejemplo n.º 2
0
 public IEnumerable <Coin> GetAllCoinData(int count)
 {
     mCoinList       = new List <Data>();
     mNetworkService = new CrytoIndex.Service.NetworkServiceApi(mCoinList);
     return(mNetworkService.GetAllCoinData(count));
 }
Ejemplo n.º 3
0
 public void GetAllCoins()
 {
     mNetworkService = new NetworkServiceApi(mCoinList);
     mCoinList       = mNetworkService.GetCoinList();
 }