17 lines
348 B
17 lines
348 B
3 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Web;
|
||
|
using System.Web.Mvc;
|
||
|
|
||
|
namespace Pingchuan.BeijingSafeguard.App.Controllers
|
||
|
{
|
||
|
public class UserManagementController : Controller
|
||
|
{
|
||
|
// GET: UserManagement
|
||
|
public ActionResult Index()
|
||
|
{
|
||
|
return View();
|
||
|
}
|
||
|
}
|
||
|
}
|