PageRenderTime 44ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/TechEdWebApiDemo/Controllers/HomeController.cs

https://github.com/garchibald/TechEdWebApiDemo
C# | 16 lines | 15 code | 1 blank | 0 comment | 0 complexity | ba625da5f474984ecf2467ae87243db9 MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Mvc;
  6. namespace TechEdWebApiDemo.Controllers
  7. {
  8. public class HomeController : Controller
  9. {
  10. public ActionResult Index()
  11. {
  12. return View();
  13. }
  14. }
  15. }