/Passbook.Sample.Web/Controllers/HomeController.cs

https://github.com/Comezon/dotnet-passbook · C# · 16 lines · 15 code · 1 blank · 0 comment · 0 complexity · 53e382ada00b55dd4697f21b8a413aca 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 Passbook.Sample.Web.Controllers
  7. {
  8. public class HomeController : Controller
  9. {
  10. public ActionResult Index()
  11. {
  12. return View();
  13. }
  14. }
  15. }