コード例 #1
0
ファイル: HomeController.cs プロジェクト: BLesnau/Byldit
        public ActionResult ByldTag( string tagId )
        {
            var model = new ByldTagViewModel
             {
            TagId = tagId
             };

             return View( "Beta", model );
        }
コード例 #2
0
ファイル: HomeController.cs プロジェクト: BLesnau/Byldit
        public ActionResult Beta()
        {
            var model = new ByldTagViewModel
             {
            TagId = null
             };

             return View( model );
        }