/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
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- namespace Passbook.Sample.Web.Controllers
- {
- public class HomeController : Controller
- {
- public ActionResult Index()
- {
- return View();
- }
- }
- }