ComplianceServer/oldcode/Core.Web/Controllers/InnerUserRoleController.cs

19 lines
342 B
C#

using System.Web.Mvc;
namespace Core.Web.Controllers
{
public class InnerUserRoleController : BaseController
{
[HttpGet]
public ActionResult Index()
{
return View();
}
[HttpPost]
public JsonResult Index(string where)
{
return null;
}
}
}