PageRenderTime 40ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/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
Possible License(s): CC-BY-SA-3.0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Mvc;
  6. namespace Bifrost.Samples.Blog.Mvc.Features.Test
  7. {
  8. public class TestController : Controller
  9. {
  10. //
  11. // GET: /Test/
  12. public ActionResult Index()
  13. {
  14. return View();
  15. }
  16. }
  17. }