Beispiel #1
0
        public ActionResult IndexLTCallTime()
        {
            ViewBag.Title = "Home Page";
            LTCController ltcContrAllTime = new LTCController();

            return(View(ltcContrAllTime.GetLTC_allTime()));
        }
Beispiel #2
0
        public ActionResult IndexAllallTime()
        {
            ViewBag.Title = "Home Page";
            LTCController   ltcContrAllTime = new LTCController();
            BTCController   btcContrAllTime = new BTCController();
            ETHController   ethContrAllTime = new ETHController();
            CoinsALLallTime allContrAllTime = new CoinsALLallTime();

            allContrAllTime.btcAllTimeAll = btcContrAllTime.GetBTC_allTime();
            allContrAllTime.ethAllTimeAll = ethContrAllTime.GetETH_allTime();
            allContrAllTime.ltcAllTimeAll = ltcContrAllTime.GetLTC_allTime();
            return(View(allContrAllTime));
        }