Esempio n. 1
0
        /// <summary>
        /// главная
        /// </summary>
        /// <returns></returns>
        public ActionResult Index()
        {
            var model = new UserCalcViewModel();

            model.IpAddress = Request.UserHostAddress;
            model           = service.GetUserHistory(model).GetAwaiter().GetResult();
            return(View(model));
        }