Ejemplo n.º 1
0
        public ActionResult Index()
        {
            var model = new Models.Home.IndexModel();
            model.Date = DateTime.Today;

            return Index(model);
        }
Ejemplo n.º 2
0
        public ActionResult Index()
        {
            var model = new Models.Home.IndexModel();

            model.Message = "Evozone starter kit";

            model.Bookmarks = QueryBookmarks.Query().ToList();

            return View(model);
        }