/Source/Samples/Blog/Bifrost.Samples.Blog.Mvc/Features/Test/TestController.cs
# · C# · 20 lines · 15 code · 3 blank · 2 comment · 0 complexity · 730d17ed8af6313fee64970e34c4dc70 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
-
- namespace Bifrost.Samples.Blog.Mvc.Features.Test
- {
- public class TestController : Controller
- {
- //
- // GET: /Test/
-
- public ActionResult Index()
- {
- return View();
- }
-
- }
- }