| 1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web.Mvc;
- namespace Winsoft.GOV.XF.WX.Controllers
- {
- [Authorize]
- public class HomeController : Controller
- {
- public ActionResult Index()
- {
- return View();
- }
- }
- }
|