public ActionResult About()
        {
            var model = new sampleAspMVC.Models.AboutModel();
            model.Name = "IR";
            model.Location = "Kiev. Ukraine";

            return View(model);
        }
        public ActionResult About()
        {
            var model = new sampleAspMVC.Models.AboutModel();

            model.Name     = "IR";
            model.Location = "Kiev. Ukraine";


            return(View(model));
        }