Exemple #1
0
        public ActionResult Index(string id)
        {
            var model = new NoteViewModel(NoteStorage)
            {
                NoteId = id
            };

            model.Load();

            return(View("ViewEdit", model));
        }