コード例 #1
0
        public override ActionResult Index(int groepID)
        {
            var model = new HandleidingModel();

            BaseModelInit(model, groepID, "Handleiding");
            return(View(model));
        }
コード例 #2
0
        public ActionResult ViewTonen(int?groepID, string helpBestand)
        {
            var model = new HandleidingModel {
                Titel = "Handleiding"
            };

            BaseModelInit(model, groepID);
            return(View(helpBestand, "Handleiding", model));
        }